diff options
author | Michael Paquier <michael@paquier.xyz> | 2024-10-25 10:56:34 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2024-10-25 10:56:34 +0900 |
commit | 1564339bfe23b2d1aa6403d6a08a7eaae0373cf9 (patch) | |
tree | fe95cde4ecedd3f9b86c27dbde5e7bc922f8d9a6 | |
parent | 9f00edc2288892a55e2bef464f555e9f5396ff1c (diff) | |
download | postgresql-1564339bfe23b2d1aa6403d6a08a7eaae0373cf9.tar.gz postgresql-1564339bfe23b2d1aa6403d6a08a7eaae0373cf9.zip |
Add install rules for Kerberos.pm and AdjustUpgrade.pm
For the same reasons as c3a0818460a8, these can be useful for
out-of-core extension testing. Kerberos.pm has been moved to its
current path recently in 9f899562d420, and AdjustUpgrade.pm has been
introduced in 52585f8f072a, still both lacked [un]installation rules for
both meson and configure.
Reported-by: Ashutosh Bapat
Discussion: https://postgr.es/m/ZozqzznkDhfCG7Ng@paquier.xyz
-rw-r--r-- | src/test/perl/Makefile | 4 | ||||
-rw-r--r-- | src/test/perl/meson.build | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/test/perl/Makefile b/src/test/perl/Makefile index 82ea63b08e2..c02f18454e3 100644 --- a/src/test/perl/Makefile +++ b/src/test/perl/Makefile @@ -22,16 +22,20 @@ install: all installdirs $(INSTALL_DATA) $(srcdir)/PostgreSQL/Test/Utils.pm '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/Utils.pm' $(INSTALL_DATA) $(srcdir)/PostgreSQL/Test/SimpleTee.pm '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/SimpleTee.pm' $(INSTALL_DATA) $(srcdir)/PostgreSQL/Test/RecursiveCopy.pm '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/RecursiveCopy.pm' + $(INSTALL_DATA) $(srcdir)/PostgreSQL/Test/Kerberos.pm '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/Kerberos.pm' $(INSTALL_DATA) $(srcdir)/PostgreSQL/Test/Cluster.pm '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/Cluster.pm' $(INSTALL_DATA) $(srcdir)/PostgreSQL/Test/BackgroundPsql.pm '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/BackgroundPsql.pm' + $(INSTALL_DATA) $(srcdir)/PostgreSQL/Test/AdjustUpgrade.pm '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/AdjustUpgrade.pm' $(INSTALL_DATA) $(srcdir)/PostgreSQL/Version.pm '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Version.pm' uninstall: rm -f '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/Utils.pm' 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/Kerberos.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/Test/AdjustUpgrade.pm' rm -f '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Version.pm' endif diff --git a/src/test/perl/meson.build b/src/test/perl/meson.build index 4f0d928a6f3..fc9cf971ea3 100644 --- a/src/test/perl/meson.build +++ b/src/test/perl/meson.build @@ -10,6 +10,8 @@ install_data( 'PostgreSQL/Test/Utils.pm', 'PostgreSQL/Test/SimpleTee.pm', 'PostgreSQL/Test/RecursiveCopy.pm', + 'PostgreSQL/Test/Kerberos.pm', 'PostgreSQL/Test/Cluster.pm', 'PostgreSQL/Test/BackgroundPsql.pm', + 'PostgreSQL/Test/AdjustUpgrade.pm', install_dir: dir_pgxs / 'src/test/perl/PostgreSQL/Test') |