aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas G. Lockhart <lockhart@fourpalms.org>1997-05-02 13:43:14 +0000
committerThomas G. Lockhart <lockhart@fourpalms.org>1997-05-02 13:43:14 +0000
commit917abdd140de6ee39c96207a63453eb38be14a6e (patch)
tree5108ff8e8b780ba0c1b9685ecef5d2754a955d7a /src
parent50f058e26f79d173cbff9bf82c8fe038c341c56e (diff)
downloadpostgresql-917abdd140de6ee39c96207a63453eb38be14a6e.tar.gz
postgresql-917abdd140de6ee39c96207a63453eb38be14a6e.zip
Add substitution from output/.. to input/.. to match templates from inputs.
Diffstat (limited to 'src')
-rw-r--r--src/test/regress/output/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/test/regress/output/Makefile b/src/test/regress/output/Makefile
index 4674d416680..fb8d587381b 100644
--- a/src/test/regress/output/Makefile
+++ b/src/test/regress/output/Makefile
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/test/regress/output/Attic/Makefile,v 1.5 1997/04/27 19:28:20 thomas Exp $
+# $Header: /cvsroot/pgsql/src/test/regress/output/Attic/Makefile,v 1.6 1997/05/02 13:43:14 thomas Exp $
#
#-------------------------------------------------------------------------
@@ -32,8 +32,9 @@ all: $(INFILES)
rm -f $@; \
PWD=`pwd`; \
OBJ=`pwd`; \
- sed -e "s:_CWD_:$(PWD):g" \
+ sed -e "s:_CWD_:$$PWD:g" \
-e "s:_OBJWD_:$$OBJ/\.\.:g" \
-e "s:_DLSUFFIX_:$(DLSUFFIX):g" \
- -e "s/_USER_/$$USER/g" < $< > ../expected/$@
+ -e "s/_USER_/$$USER/g" < $< | \
+ sed -e "s:output/\.\.:input/\.\.:g" > ../expected/$@