mirror of
https://github.com/postgres/postgres.git
synced 2026-02-16 17:19:08 -05:00
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
This commit is contained in:
parent
828e93a6f2
commit
a4c17c8617
2 changed files with 2 additions and 0 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Reference in a new issue