rename m5scons.py scons_helper.py

--HG--
extra : convert_revision : faaacc493b8da5d002d498e10cfa8cf004aafeed
This commit is contained in:
Nathan Binkert 2005-06-27 17:01:24 -04:00
parent cad549d7aa
commit 5ea3c1c8f3

View file

@ -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