Skip to content

Commit 917abdd

Browse files
author
Thomas G. Lockhart
committed
Add substitution from output/.. to input/.. to match templates from inputs.
1 parent 50f058e commit 917abdd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/test/regress/output/Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/test/regress/output/Attic/Makefile,v 1.5 1997/04/27 19:28:20 thomas Exp $
10+
# $Header: /cvsroot/pgsql/src/test/regress/output/Attic/Makefile,v 1.6 1997/05/02 13:43:14 thomas Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

@@ -32,8 +32,9 @@ all: $(INFILES)
3232
rm -f $@; \
3333
PWD=`pwd`; \
3434
OBJ=`pwd`; \
35-
sed -e "s:_CWD_:$(PWD):g" \
35+
sed -e "s:_CWD_:$$PWD:g" \
3636
-e "s:_OBJWD_:$$OBJ/\.\.:g" \
3737
-e "s:_DLSUFFIX_:$(DLSUFFIX):g" \
38-
-e "s/_USER_/$$USER/g" < $< > ../expected/$@
38+
-e "s/_USER_/$$USER/g" < $< | \
39+
sed -e "s:output/\.\.:input/\.\.:g" > ../expected/$@
3940

0 commit comments

Comments
 (0)