projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cad549d
)
rename m5scons.py scons_helper.py
author
Nathan Binkert
<binkertn@umich.edu>
Mon, 27 Jun 2005 21:01:24 +0000
(17:01 -0400)
committer
Nathan Binkert
<binkertn@umich.edu>
Mon, 27 Jun 2005 21:01:24 +0000
(17:01 -0400)
--HG--
extra : convert_revision :
faaacc493b8da5d002d498e10cfa8cf004aafeed
python/SConscript
patch
|
blob
|
history
diff --git
a/python/SConscript
b/python/SConscript
index 1082b52c1663e67bc22e86186a39e02efc077689..57b018fea34ee9f55a3d522c093828c846966c8d 100644
(file)
--- 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