From cd3593c38d62e5b61b08b4314a5aa103e6992f9d Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Fri, 22 Mar 2019 09:10:48 +1100 Subject: [PATCH 1/2] fix plugin installation --- bin/plugins/Makefile.in | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) 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:: From bd670d4a0447ea51d1da9b1f6676ec7f65d53745 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Fri, 22 Mar 2019 09:13:38 +1100 Subject: [PATCH 2/2] add CHANGES --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) 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]