1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-03 20:02:46 +03:00

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 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