Fix for -Wno-error

This commit is contained in:
Vadim B. Mikheev 1997-04-18 08:57:39 +00:00
parent d6b8f637f9
commit 8466811335
2 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@
# Makefile for the bootstrap module
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/bootstrap/Makefile,v 1.7 1997/04/15 17:24:07 scrappy Exp $
# $Header: /cvsroot/pgsql/src/backend/bootstrap/Makefile,v 1.8 1997/04/18 08:55:55 vadim Exp $
#
#
# We must build bootparse.c and bootscanner.c with yacc and lex and sed,
@ -27,7 +27,7 @@ INCLUDE_OPT= -I.. \
CFLAGS+= $(INCLUDE_OPT)
ifeq ($CC), gcc)
ifeq ($(CC), gcc)
CFLAGS+= -Wno-error
endif

View File

@ -4,7 +4,7 @@
# Makefile for parser
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/parser/Makefile,v 1.7 1997/04/15 17:24:26 scrappy Exp $
# $Header: /cvsroot/pgsql/src/backend/parser/Makefile,v 1.8 1997/04/18 08:57:39 vadim Exp $
#
#-------------------------------------------------------------------------
@ -17,7 +17,7 @@ INCLUDE_OPT= -I.. \
CFLAGS+= $(INCLUDE_OPT)
ifeq ($CC), gcc)
ifeq ($(CC), gcc)
CFLAGS+= -Wno-error
endif