summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDave Jones <davej@redhat.com>2009-10-26 17:28:50 -0400
committerDave Jones <davej@redhat.com>2009-10-26 17:28:50 -0400
commit423620b83d8ffdf760eaad25cd62bc1081158863 (patch)
tree3d0bb8c4a24a9127aeac72c922a05d4adc731b7a /Makefile
parent813c916f8cad198f19ac2deb15193c7c71c4ff1c (diff)
old gcc doesn't support this flag, and breaks compilation.
We should test for its presence, but in the meantime, just disable it.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8c18226..3d4f197 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,5 @@
-CFLAGS = -g -O2 -Werror -Wall -Wshadow -Wextra -Wmissing-declarations -Wdeclaration-after-statement -Wredundant-decls -fno-strict-aliasing -Wstrict-overflow=5
+CFLAGS = -g -O2 -Werror -Wall -Wshadow -Wextra -Wmissing-declarations -Wdeclaration-after-statement -Wredundant-decls -fno-strict-aliasing
+# -Wstrict-overflow=5
CC = gcc
SHELL = /bin/sh