diff options
author | Nathan Binkert <binkertn@umich.edu> | 2005-06-27 17:01:24 -0400 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2005-06-27 17:01:24 -0400 |
commit | 5ea3c1c8f3902a0c291637e068c13a983229261f (patch) | |
tree | 0d0df59e6c3be050686e92272d9ca3adcb677139 /python/SConscript | |
parent | cad549d7aaefece708495842f2be5e6532a27bb7 (diff) | |
download | gem5-5ea3c1c8f3902a0c291637e068c13a983229261f.tar.xz |
rename m5scons.py scons_helper.py
--HG--
extra : convert_revision : faaacc493b8da5d002d498e10cfa8cf004aafeed
Diffstat (limited to 'python/SConscript')
-rw-r--r-- | python/SConscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/SConscript b/python/SConscript index 1082b52c1..57b018fea 100644 --- a/python/SConscript +++ b/python/SConscript @@ -30,7 +30,7 @@ import os, os.path, re, sys Import('env') -import m5scons +import scons_helper def WriteEmbeddedPyFile(target, source, path, name, ext, filename): if isinstance(source, str): @@ -151,7 +151,7 @@ def MakeDefinesPyFile(target, source, env): f = file(str(target[0]), 'w') print >>f, "import __main__" print >>f, "__main__.m5_build_env = ", - print >>f, m5scons.flatten_defines(env['CPPDEFINES']) + print >>f, scons_helper.flatten_defines(env['CPPDEFINES']) f.close() CFileCounter = 0 |