From 7039c7cff6736780c3bbb41a90a6dfea0f581ad2 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Tue, 2 May 2023 09:41:03 +0200 Subject: [PATCH] Add missing uninstallation rule for BackgroundPsql.pm Commit a4c17c8617 added in the install rule but not the uninstall rule. --- src/test/perl/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/perl/Makefile b/src/test/perl/Makefile index 7d7fef262d5..435b45a6cc5 100644 --- a/src/test/perl/Makefile +++ b/src/test/perl/Makefile @@ -31,6 +31,7 @@ uninstall: rm -f '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/SimpleTee.pm' rm -f '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/RecursiveCopy.pm' rm -f '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/Cluster.pm' + rm -f '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/BackgroundPsql.pm' rm -f '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Version.pm' endif