summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2012-09-17 17:02:00 -0400
committerEric S. Raymond <esr@thyrsus.com>2012-09-17 17:02:00 -0400
commitfac82540860cb35f7c3775a0317ee48f8f1743ef (patch)
treec33ba584bfe2ab1443dd8112955f924012a93eb7 /SConstruct
parenteaa578b18663d16c763a3a8ec8fa7b7fd88f5298 (diff)
downloadgpsd-fac82540860cb35f7c3775a0317ee48f8f1743ef.tar.gz
Even conditional -Werror won't fly. Works under glibc-2.13, fails under 2.15...
...due apparently to a broken FD_SET macro.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 0 insertions, 4 deletions
diff --git a/SConstruct b/SConstruct
index 21e6cb62..aa0a242e 100644
--- a/SConstruct
+++ b/SConstruct
@@ -259,10 +259,6 @@ def announce(msg):
# We need to define -D_GNU_SOURCE
env.Append(CFLAGS='-D_GNU_SOURCE')
-# Turn compiler warnings into errors on as many platforms as we can.
-if platform.machine() in ('x86_64',):
- env.Append(CFLAGS='-Werror')
-
# DESTDIR environment variable means user wants to prefix the installation root.
DESTDIR = os.environ.get('DESTDIR', '')