diff options
author | Stephen Frost <sfrost@snowman.net> | 2016-05-06 15:26:57 -0400 |
---|---|---|
committer | Stephen Frost <sfrost@snowman.net> | 2016-05-06 15:26:57 -0400 |
commit | eccfeeb631fa44850b644661d8b2ce94d9ef4fc1 (patch) | |
tree | 1b0409ad5e6d9989d671583122e8ea6d5e8b9f04 /src | |
parent | 68d704edbfe14fd8d21545b244c3f6824e0fbb8a (diff) | |
download | postgresql-eccfeeb631fa44850b644661d8b2ce94d9ef4fc1.tar.gz postgresql-eccfeeb631fa44850b644661d8b2ce94d9ef4fc1.zip |
Remove MODULES_big from test_pg_dump
The Makefile for test_pg_dump shouldn't have a MODULES_big line
because there's no actual compiled bit for that extension. Hopefully
this will fix the Windows buildfarm members which were complaining.
In passing, also add the 'prove_installcheck' bit to the pg_dump and
test_pg_dump Makefiles, to get the buildfarm members to actually run
those tests.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_dump/Makefile | 3 | ||||
-rw-r--r-- | src/test/modules/test_pg_dump/Makefile | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/bin/pg_dump/Makefile b/src/bin/pg_dump/Makefile index 260804b5a7e..9a96361aa35 100644 --- a/src/bin/pg_dump/Makefile +++ b/src/bin/pg_dump/Makefile @@ -45,6 +45,9 @@ installdirs: check: $(prove_check) +installcheck: + $(prove_installcheck) + uninstall: rm -f $(addprefix '$(DESTDIR)$(bindir)'/, pg_dump$(X) pg_restore$(X) pg_dumpall$(X)) diff --git a/src/test/modules/test_pg_dump/Makefile b/src/test/modules/test_pg_dump/Makefile index 0eb3b5f988e..e6adbb82b42 100644 --- a/src/test/modules/test_pg_dump/Makefile +++ b/src/test/modules/test_pg_dump/Makefile @@ -1,6 +1,5 @@ # src/test/modules/test_rls_hooks/Makefile -MODULE_big = test_pg_dump PGFILEDESC = "test_pg_dump - Test pg_dump with an extension" EXTENSION = test_pg_dump @@ -13,6 +12,9 @@ check: prove-check prove-check: $(prove_check) +installcheck: + $(prove_installcheck) + ifdef USE_PGXS PG_CONFIG = pg_config PGXS := $(shell $(PG_CONFIG) --pgxs) |