rename m5scons.py scons_helper.py
authorNathan Binkert <binkertn@umich.edu>
Mon, 27 Jun 2005 21:01:24 +0000 (17:01 -0400)
committerNathan Binkert <binkertn@umich.edu>
Mon, 27 Jun 2005 21:01:24 +0000 (17:01 -0400)
--HG--
extra : convert_revision : faaacc493b8da5d002d498e10cfa8cf004aafeed

python/SConscript

index 1082b52c1663e67bc22e86186a39e02efc077689..57b018fea34ee9f55a3d522c093828c846966c8d 100644 (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