From 25e29e5c20352afe68d67140bb0e9bb4afea29cb Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 8 Jan 2002 21:00:30 +0000 Subject: [PATCH] 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. --- src/test/regress/GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5