From 4ea38446803cff182667f94ccd391db152d45fc4 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Wed, 11 Jun 1997 01:05:48 +0000 Subject: [PATCH] From: "Brian E. Gallew" Subject: Re: [PORTS] Re: [PATCHES] DG/UX 5.4R11 patches Comments in boot.sed break DG/UX port --- src/backend/bootstrap/Makefile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/backend/bootstrap/Makefile b/src/backend/bootstrap/Makefile index abd306afdf..30c77bb53f 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 -- 2.11.0