Closed GoogleCodeExporter closed 9 years ago
Also, the value is now comma separated, but that doesn't work with e.g. :
scons CFLAGS="-Wl,-foo,fooval -g -O0"
Attached patch solves both issues:
Index: SConstruct
===================================================================
--- SConstruct (revision 2122)
+++ SConstruct (working copy)
@@ -34,7 +34,7 @@
if val == 'none':
val = []
else:
- val = val.split(',')
+ val = val.split(' ')
return val
def RawListVariable(key, help, default):
Original comment by lieven.govaerts@gmail.com
on 12 Aug 2013 at 11:48
This was reported by philipm on #svn-dev.
Original comment by lieven.govaerts@gmail.com
on 12 Aug 2013 at 4:38
Fixed in r2125: Make CFLAGS, LIBS, LINKFLAGS and CPPFLAGS take a
space-separated list.
Original comment by lieven.govaerts@gmail.com
on 12 Aug 2013 at 5:28
Original issue reported on code.google.com by
lieven.govaerts@gmail.com
on 12 Aug 2013 at 9:22