summaryrefslogtreecommitdiff
path: root/ext/libelf
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2010-11-09 11:03:40 -0800
committerGabe Black <gblack@eecs.umich.edu>2010-11-09 11:03:40 -0800
commit14b27fc302323e4b9977564951ea2c3fffed4dea (patch)
tree58113b8fd830784ae56d36f5e2e461fe8d646e1b /ext/libelf
parent2fd9dc19cd3ee50341aa6327afa9a098addfda5c (diff)
downloadgem5-14b27fc302323e4b9977564951ea2c3fffed4dea.tar.xz
scons: Work around for old versions of scons mistaking strings for sequences.
Diffstat (limited to 'ext/libelf')
-rw-r--r--ext/libelf/SConscript2
1 files changed, 1 insertions, 1 deletions
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')])