aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Gustafsson <dgustafsson@postgresql.org>2023-04-26 11:40:01 +0200
committerDaniel Gustafsson <dgustafsson@postgresql.org>2023-04-26 11:40:01 +0200
commita4c17c86176cfa712f541b81b2a026ae054b275e (patch)
tree12fc305be9e04a29ebc0474118b10f7c867d72c2 /src
parent828e93a6f2dbf4bc7a24bc3ce166c34879eeb8b1 (diff)
downloadpostgresql-a4c17c86176cfa712f541b81b2a026ae054b275e.tar.gz
postgresql-a4c17c86176cfa712f541b81b2a026ae054b275e.zip
Fix missing installation rules for BackgroundPsql.pm
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 <peter.eisentraut@enterprisedb.com> Discussion: https://postgr.es/m/c0ba3008-dbc8-e53f-29f2-2e9abe72b2a2@enterprisedb.com
Diffstat (limited to 'src')
-rw-r--r--src/test/perl/Makefile1
-rw-r--r--src/test/perl/meson.build1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/test/perl/Makefile b/src/test/perl/Makefile
index 49b18c1f494..7d7fef262d5 100644
--- a/src/test/perl/Makefile
+++ b/src/test/perl/Makefile
@@ -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:
diff --git a/src/test/perl/meson.build b/src/test/perl/meson.build
index 7cc73894d5b..101e8a2b8f8 100644
--- a/src/test/perl/meson.build
+++ b/src/test/perl/meson.build
@@ -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')