From c5735eefdf30f95dfe7f7c97b1ea6407a6df8361 Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Fri, 2 Feb 2024 10:53:13 +1300 Subject: [PATCH] [perl] Fix `make uninstall` to remove shared object Restore a line accidentally removed in 283a5be17676e9c933a0e4eb86ee3266e8b4890b (cherry picked from commit abd615ff0c1a4b31393a1097c364f7db48ff953b) --- xapian-bindings/perl/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/xapian-bindings/perl/Makefile.am b/xapian-bindings/perl/Makefile.am index dfa15473b..2630ed3ed 100644 --- a/xapian-bindings/perl/Makefile.am +++ b/xapian-bindings/perl/Makefile.am @@ -95,6 +95,7 @@ uninstall-local: ## Because we don't install the .la file, "make uninstall" doesn't work and ## we need to remove the file ourselves. eval `grep '^dlname=' $(perlarch_LTLIBRARIES)` ; \ + rm -f $(DESTDIR)$(perlarchdir)/"$$dlname" @cd docs ; for f in Xapian/*.html ; do \ echo " rm -f '$(DESTDIR)$(docdatadir)/$$f'"; \ rm -f "$(DESTDIR)$(docdatadir)/$$f"; \ -- 2.11.4.GIT