From: Tom Lane Date: Tue, 8 Jan 2002 21:00:30 +0000 (+0000) Subject: In a VPATH build, resultmap must be one of the symlinked files, else X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=25e29e5c20352afe68d67140bb0e9bb4afea29cb;p=users%2Fbernd%2Fpostgres.git 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. --- diff --git a/src/test/regress/GNUmakefile b/src/test/regress/GNUmakefile index 2718450ee2..18e2a99833 100644 --- a/src/test/regress/GNUmakefile +++ b/src/test/regress/GNUmakefile @@ -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)