From 75edd9f5738dfe41a7a44985f9a19a33d18aa5d0 Mon Sep 17 00:00:00 2001 From: Christoph Brill Date: Tue, 23 Jun 2009 09:07:21 +0200 Subject: [PATCH] Fix the hanging build Appending caused the CXXFLAGS like "-Wall" to be added like "- W a l l". Could be a scons 1.0 bug, but I'm not sure. Dropping these seems to work fine. --- SConstruct | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/SConstruct b/SConstruct index 40cc7ae..eaf280a 100644 --- a/SConstruct +++ b/SConstruct @@ -37,7 +37,7 @@ opts.Save('options.cache', env) env.ParseConfig('pkg-config --cflags --libs glib-2.0') -env.Append(CXXFLAGS=' -Wall -Wno-sign-compare -Wno-write-strings') +#env.Append(CXXFLAGS=' -Wall -Wno-sign-compare -Wno-write-strings') #env.Append(CXXFLAGS=' -O0', LINKFLAGS=' -O0') #env.Append(CXXFLAGS=' -O3', LINKFLAGS=' -O3') -- 1.6.3.1