|
6 | 6 | # Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group |
7 | 7 | # Portions Copyright (c) 1994, Regents of the University of California |
8 | 8 | # |
9 | | -# $PostgreSQL: pgsql/src/test/regress/GNUmakefile,v 1.66 2007/02/09 15:56:00 petere Exp $ |
| 9 | +# $PostgreSQL: pgsql/src/test/regress/GNUmakefile,v 1.67 2007/03/13 22:56:48 tgl Exp $ |
10 | 10 | # |
11 | 11 | #------------------------------------------------------------------------- |
12 | 12 |
|
@@ -86,9 +86,10 @@ $(NAME)$(DLSUFFIX): $(shlib) |
86 | 86 |
|
87 | 87 | # Test input and expected files. These are created by pg_regress itself, so we |
88 | 88 | # don't have a rule to create them. We do need rules to clean them however. |
89 | | -file_list := $(subst .source,, $(notdir $(wildcard $(top_srcdir)/$(subdir)/input/*.source))) |
90 | | -input_files := $(foreach file, $(file_list), sql/$(file).sql) |
91 | | -output_files := $(foreach file, $(file_list), expected/$(file).out) |
| 89 | +ifile_list := $(subst .source,, $(notdir $(wildcard $(top_srcdir)/$(subdir)/input/*.source))) |
| 90 | +input_files := $(foreach file, $(ifile_list), sql/$(file).sql) |
| 91 | +ofile_list := $(subst .source,, $(notdir $(wildcard $(top_srcdir)/$(subdir)/output/*.source))) |
| 92 | +output_files := $(foreach file, $(ofile_list), expected/$(file).out) |
92 | 93 |
|
93 | 94 | ifneq ($(PORTNAME),win32) |
94 | 95 | abs_srcdir := $(shell cd $(srcdir) && pwd) |
|
0 commit comments