diff --git a/CHANGES b/CHANGES index d1611d7a92..f95cfa05a1 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ +5196. [bug] make install failed with --with-dlopen=no. [GL #955] + 5195. [bug] "allow-update" and "allow-update-forwarding" were treated as configuration errors if used at the options or view level. [GL #913] diff --git a/bin/plugins/Makefile.in b/bin/plugins/Makefile.in index 0e061e7796..1497ae7ca1 100644 --- a/bin/plugins/Makefile.in +++ b/bin/plugins/Makefile.in @@ -25,6 +25,7 @@ NSLIBS = ../../lib/ns/libns.@A@ LIBS = SO_TARGETS = lib/filter-aaaa.@SO@ +SO_INSTALL = filter-aaaa.@SO@ TARGETS = @SO_TARGETS@ SO_OBJS = filter-aaaa.@O@ @@ -62,9 +63,15 @@ installdirs: $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${plugindir} $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${mandir}/man8 -install:: filter-aaaa.@SO@ installdirs - ${LIBTOOL_MODE_INSTALL} ${INSTALL_LIBRARY} filter-aaaa.@SO@ \ - ${DESTDIR}${plugindir} +install:: @SO_TARGETS@ installdirs + for i in ${SO_INSTALL} ; \ + do \ + if test -f $$i ; \ + then \ + ${LIBTOOL_MODE_INSTALL} ${INSTALL_LIBRARY} $$i \ + ${DESTDIR}${plugindir}; \ + fi \ + done ${INSTALL_DATA} ${srcdir}/filter-aaaa.8 ${DESTDIR}${mandir}/man8 uninstall::