summaryrefslogtreecommitdiff
path: root/src/parser/Makefile.am
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-06-15 22:05:46 +0000
committerMorgan Deters <mdeters@gmail.com>2010-06-15 22:05:46 +0000
commit22685d657c483ab53c645bb9228bd5d4dd708cf5 (patch)
treed977898109cf97a0a1e720536fda4ffd327f5a85 /src/parser/Makefile.am
parentc717cdb19de5b5791d8819fcffb9ea5b9345e171 (diff)
fix last commit gcc options (-wunknown-pragmas ==> -Wno-unknown-pragmas)
Diffstat (limited to 'src/parser/Makefile.am')
-rw-r--r--src/parser/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser/Makefile.am b/src/parser/Makefile.am
index 87b0f9f9d..a323ec3cb 100644
--- a/src/parser/Makefile.am
+++ b/src/parser/Makefile.am
@@ -15,7 +15,7 @@ LIBCVC4PARSER_VERSION = @CVC4_PARSER_LIBRARY_VERSION@
AM_CPPFLAGS = \
-D__BUILDING_CVC4PARSERLIB \
-I@srcdir@/../include -I@srcdir@/.. $(ANTLR_INCLUDES)
-AM_CXXFLAGS = -Wall -wunknown-pragmas $(FLAG_VISIBILITY_HIDDEN)
+AM_CXXFLAGS = -Wall -Wno-unknown-pragmas $(FLAG_VISIBILITY_HIDDEN)
SUBDIRS = smt smt2 cvc
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback