Skip to content

Commit 8466811

Browse files
committed
Fix for -Wno-error
1 parent d6b8f63 commit 8466811

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/backend/bootstrap/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for the bootstrap module
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/backend/bootstrap/Makefile,v 1.7 1997/04/15 17:24:07 scrappy Exp $
7+
# $Header: /cvsroot/pgsql/src/backend/bootstrap/Makefile,v 1.8 1997/04/18 08:55:55 vadim Exp $
88
#
99
#
1010
# We must build bootparse.c and bootscanner.c with yacc and lex and sed,
@@ -27,7 +27,7 @@ INCLUDE_OPT= -I.. \
2727

2828
CFLAGS+= $(INCLUDE_OPT)
2929

30-
ifeq ($CC), gcc)
30+
ifeq ($(CC), gcc)
3131
CFLAGS+= -Wno-error
3232
endif
3333

src/backend/parser/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for parser
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/backend/parser/Makefile,v 1.7 1997/04/15 17:24:26 scrappy Exp $
7+
# $Header: /cvsroot/pgsql/src/backend/parser/Makefile,v 1.8 1997/04/18 08:57:39 vadim Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -17,7 +17,7 @@ INCLUDE_OPT= -I.. \
1717

1818
CFLAGS+= $(INCLUDE_OPT)
1919

20-
ifeq ($CC), gcc)
20+
ifeq ($(CC), gcc)
2121
CFLAGS+= -Wno-error
2222
endif
2323

0 commit comments

Comments
 (0)