Fix missing installation rules for BackgroundPsql.pm
authorDaniel Gustafsson <[email protected]>
Wed, 26 Apr 2023 09:40:01 +0000 (11:40 +0200)
committerDaniel Gustafsson <[email protected]>
Wed, 26 Apr 2023 09:40:01 +0000 (11:40 +0200)
Commit 664d75753 added the BackgroundPsql module with helper functions
for tests running interactive or background psql tasks. The new module
was however not added to the install rules of the build systems.

Reported-by: Peter Eisentraut <[email protected]>
Discussion: https://postgr.es/m/c0ba3008-dbc8-e53f-29f2-2e9abe72b2a2@enterprisedb.com

src/test/perl/Makefile
src/test/perl/meson.build

index 49b18c1f49414990434aaf55ccea8616f9e3ab33..7d7fef262d58cb67049076fe52c69d325447d628 100644 (file)
@@ -23,6 +23,7 @@ install: all installdirs
        $(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/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/Version.pm '$(DESTDIR)$(pgxsdir)/$(subdir)/PostgreSQL/Version.pm'
 
 uninstall:
index 7cc73894d5bc76cbd0ac517160745ef49fd954a2..101e8a2b8f81501072bbc25e19c0ac7412cecb45 100644 (file)
@@ -11,4 +11,5 @@ install_data(
   'PostgreSQL/Test/SimpleTee.pm',
   'PostgreSQL/Test/RecursiveCopy.pm',
   'PostgreSQL/Test/Cluster.pm',
+  'PostgreSQL/Test/BackgroundPsql.pm',
   install_dir: dir_pgxs / 'src/test/perl/PostgreSQL/Test')