From 14b27fc302323e4b9977564951ea2c3fffed4dea Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Tue, 9 Nov 2010 11:03:40 -0800 Subject: scons: Work around for old versions of scons mistaking strings for sequences. --- ext/libelf/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/libelf/SConscript') diff --git a/ext/libelf/SConscript b/ext/libelf/SConscript index 71cf9840d..41627e90c 100644 --- a/ext/libelf/SConscript +++ b/ext/libelf/SConscript @@ -106,7 +106,7 @@ if not SCons.Tool.m4.exists(m4env): "Please install M4 and try again." Exit(1) -m4env.Append(M4FLAGS='-DSRCDIR=%s' % Dir('.').path) +m4env.Append(M4FLAGS=['-DSRCDIR=%s' % Dir('.').path]) m4env['M4COM'] = '$M4 $M4FLAGS $SOURCES > $TARGET' m4env.M4(target=File('libelf_convert.c'), source=[File('elf_types.m4'), File('libelf_convert.m4')]) -- cgit v1.2.3