8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c74c9d commit 7ca774aCopy full SHA for 7ca774a
src/backend/parser/Makefile
@@ -2,7 +2,7 @@
2
#
3
# Makefile for parser
4
5
-# $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 $
6
7
#-------------------------------------------------------------------------
8
@@ -24,6 +24,11 @@ include $(top_srcdir)/src/backend/common.mk
24
# scan is compiled as part of gram
25
gram.o: $(srcdir)/scan.c
26
27
+# Latest flex causes warnings in this file.
28
+ifeq ($(GCC),yes)
29
+gram.o: CFLAGS += -Wno-error
30
+endif
31
+
32
33
# There is no correct way to write a rule that generates two files.
34
# Rules with two targets don't have that meaning, they are merely
0 commit comments