mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
Add -Wno-error to CFLAGS from gram.o as long as it's broken.
This commit is contained in:
parent
6c74c9dad8
commit
7ca774a873
@ -2,7 +2,7 @@
|
||||
#
|
||||
# Makefile for parser
|
||||
#
|
||||
# $PostgreSQL: pgsql/src/backend/parser/Makefile,v 1.49 2009/03/07 00:13:57 alvherre Exp $
|
||||
# $PostgreSQL: pgsql/src/backend/parser/Makefile,v 1.50 2009/08/26 22:15:59 petere Exp $
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
@ -24,6 +24,11 @@ include $(top_srcdir)/src/backend/common.mk
|
||||
# scan is compiled as part of gram
|
||||
gram.o: $(srcdir)/scan.c
|
||||
|
||||
# Latest flex causes warnings in this file.
|
||||
ifeq ($(GCC),yes)
|
||||
gram.o: CFLAGS += -Wno-error
|
||||
endif
|
||||
|
||||
|
||||
# There is no correct way to write a rule that generates two files.
|
||||
# Rules with two targets don't have that meaning, they are merely
|
||||
|
Loading…
Reference in New Issue
Block a user