aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2002-01-08 21:00:30 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2002-01-08 21:00:30 +0000
commitbf2e5eedf0c45fa914231b905212013d3cc78c76 (patch)
treed337f2d2ab032d118d74c68fb7810d78d2becf50 /src
parent154ccb60408a0e389ddcc79f54fc1e1bc58235c0 (diff)
downloadpostgresql-bf2e5eedf0c45fa914231b905212013d3cc78c76.tar.gz
postgresql-bf2e5eedf0c45fa914231b905212013d3cc78c76.zip
In a VPATH build, resultmap must be one of the symlinked files, else
pg_regress doesn't see it and you don't get any port-specific comparisons.
Diffstat (limited to 'src')
-rw-r--r--src/test/regress/GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/GNUmakefile b/src/test/regress/GNUmakefile
index 84d2959e4f5..794f2fce45b 100644
--- a/src/test/regress/GNUmakefile
+++ b/src/test/regress/GNUmakefile
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/test/regress/GNUmakefile,v 1.35 2001/09/16 16:11:11 petere Exp $
+# $Header: /cvsroot/pgsql/src/test/regress/GNUmakefile,v 1.36 2002/01/08 21:00:30 tgl Exp $
#
#-------------------------------------------------------------------------
@@ -87,7 +87,7 @@ $(output_files): expected/%.out: output/%.source
# $(srcdir) to the build directory.
ifdef VPATH
-remaining_files_src := $(wildcard $(srcdir)/sql/*.sql) $(wildcard $(srcdir)/expected/*.out)
+remaining_files_src := $(wildcard $(srcdir)/sql/*.sql) $(wildcard $(srcdir)/expected/*.out) $(srcdir)/resultmap
remaining_files_build := $(patsubst $(srcdir)/%, $(abs_builddir)/%, $(remaining_files_src))
all: $(remaining_files_build)