summaryrefslogtreecommitdiff
path: root/src/backend/bootstrap
diff options
context:
space:
mode:
authorVadim B. Mikheev1997-04-18 08:57:39 +0000
committerVadim B. Mikheev1997-04-18 08:57:39 +0000
commit84668113351018a53176c69fc03a36fc1928ac51 (patch)
treea4e267c0f0c66ce3192bec5ae57bb9f7aef1d6cf /src/backend/bootstrap
parentd6b8f637f9f3875208ac6cbaa9f1a4499496b96c (diff)
Fix for -Wno-error
Diffstat (limited to 'src/backend/bootstrap')
-rw-r--r--src/backend/bootstrap/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/bootstrap/Makefile b/src/backend/bootstrap/Makefile
index 54c6748573e..abd306afdf5 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.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