Skip to content

Commit 4062337

Browse files
committed
PG-1927 Add missing perl modules to Makefile for devel packages
Some of the files in src/test/perl/PostgreSQL/Test directory that are used in the tap tests are not being bundled in RHEL's devel & Debian's client packages. This commit ensures that all files present in the mentioned directory are present in the devel and client packages.
1 parent e5376c7 commit 4062337

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/test/perl/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ install: all installdirs
2424
$(INSTALL_DATA) $(srcdir)/PostgreSQL/Test/RecursiveCopy.pm '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/RecursiveCopy.pm'
2525
$(INSTALL_DATA) $(srcdir)/PostgreSQL/Test/Cluster.pm '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/Cluster.pm'
2626
$(INSTALL_DATA) $(srcdir)/PostgreSQL/Test/BackgroundPsql.pm '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/BackgroundPsql.pm'
27+
$(INSTALL_DATA) $(srcdir)/PostgreSQL/Test/Kerberos.pm '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/Kerberos.pm'
28+
$(INSTALL_DATA) $(srcdir)/PostgreSQL/Test/AdjustUpgrade.pm '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/AdjustUpgrade.pm'
29+
$(INSTALL_DATA) $(srcdir)/PostgreSQL/Test/TdeCluster.pm '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/TdeCluster.pm'
2730
$(INSTALL_DATA) $(srcdir)/PostgreSQL/Version.pm '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Version.pm'
2831

2932
uninstall:
@@ -32,6 +35,9 @@ uninstall:
3235
rm -f '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/RecursiveCopy.pm'
3336
rm -f '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/Cluster.pm'
3437
rm -f '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/BackgroundPsql.pm'
38+
rm -f '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/Kerberos.pm'
39+
rm -f '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/AdjustUpgrade.pm'
40+
rm -f '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Test/TdeCluster.pm'
3541
rm -f '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Version.pm'
3642

3743
endif

0 commit comments

Comments
 (0)