diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-06-11 01:05:48 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-06-11 01:05:48 +0000 |
commit | 4ea38446803cff182667f94ccd391db152d45fc4 (patch) | |
tree | 825ca26b785b216c203c16469881c2ca5d674ad8 | |
parent | 735bf0b7f2f0547183945e826acda0f67ec050e9 (diff) | |
download | postgresql-4ea38446803cff182667f94ccd391db152d45fc4.tar.gz postgresql-4ea38446803cff182667f94ccd391db152d45fc4.zip |
From: "Brian E. Gallew" <geek+@cmu.edu>
Subject: Re: [PORTS] Re: [PATCHES] DG/UX 5.4R11 patches
Comments in boot.sed break DG/UX port
-rw-r--r-- | src/backend/bootstrap/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/backend/bootstrap/Makefile b/src/backend/bootstrap/Makefile index abd306afdf5..30c77bb53f3 100644 --- a/src/backend/bootstrap/Makefile +++ b/src/backend/bootstrap/Makefile @@ -4,7 +4,7 @@ # Makefile for the bootstrap module # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/bootstrap/Makefile,v 1.8 1997/04/18 08:55:55 vadim Exp $ +# $Header: /cvsroot/pgsql/src/backend/bootstrap/Makefile,v 1.9 1997/06/11 01:05:48 scrappy Exp $ # # # We must build bootparse.c and bootscanner.c with yacc and lex and sed, @@ -49,14 +49,16 @@ bootstrap.o: bootstrap_tokens.h bootstrap_tokens.h bootparse.c: bootparse.y $(YACC) $(YFLAGS) $< - sed -f boot.sed < y.tab.c > bootparse.c + grep -v "^#" boot.sed > sedfile + sed -f sedfile < y.tab.c > bootparse.c mv y.tab.h bootstrap_tokens.h - rm -f y.tab.c + rm -f y.tab.c sedfile bootscanner.c: bootscanner.l $(LEX) $< - sed -f boot.sed < lex.yy.c > bootscanner.c - rm -f lex.yy.c + grep -v "^#" boot.sed > sedfile + sed -f sedfile < lex.yy.c > bootscanner.c + rm -f lex.yy.c sedfile clean: rm -f SUBSYS.o $(OBJS) bootparse.c bootstrap_tokens.h bootscanner.c |