Browse Source

tests: fix build warning

> WARNING : test/Makefile.am: 325:  noinst_PROGRAMS was already defined in condition TRUE, which includes condition HAVE_DYNAMIC_PLUGINS ...
> test/Makefile.am:15: ... 'noinst_PROGRAMS' previously defined here
pull/134/head
Lyndon Brown 4 years ago
committed by Hugo Beauzée-Luyssen
parent
commit
a7d0549cd2
  1. 2
      test/Makefile.am

2
test/Makefile.am

@ -322,5 +322,5 @@ vlc_window_LDADD = ../lib/libvlc.la ../src/libvlccore.la ../compat/libcompat.la
# Opt-out for building the test driver if there is no dynamic plugins, since we
# cannot link static plugins currently anyway.
if HAVE_DYNAMIC_PLUGINS
noinst_PROGRAMS = vlc-window
noinst_PROGRAMS += vlc-window
endif

Loading…
Cancel
Save