1
0
Fork 0

Fix uninstalling default.so

We need a clean uninstall for 'make distcheck' to pass; libtool
hijinks leave a left-over plugins/default.so - remove it manually.
This commit is contained in:
Owen W. Taylor 2012-03-26 14:18:31 -04:00
parent fc3e82421a
commit c8b4939c7e

View file

@ -16,3 +16,9 @@ pkglib_LTLIBRARIES = default.la
install-exec-hook: install-exec-hook:
-rm $(DESTDIR)$(pkglibdir)/*.a -rm $(DESTDIR)$(pkglibdir)/*.a
-rm $(DESTDIR)$(pkglibdir)/*.la -rm $(DESTDIR)$(pkglibdir)/*.la
# Since we removed the .la file, 'make uninstall' doesn't work properly,
# since it counts on libtool to remove the .la files, so just kill the
# .so file manually.
uninstall-local:
-rm -f $(DESTDIR)$(pkglibdir)/default.so