diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2005-03-14 14:43:10 -0500 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2005-03-14 14:43:10 -0500 |
commit | bc2923f78d739ad5ff42dee402c5ba27c02004f1 (patch) | |
tree | ef28499b8358c1d655f1512a90f5cba0dcf94565 /python/SConscript | |
parent | 076e1ebac2db58ae89e21041288f8c277a54a137 (diff) | |
download | gem5-bc2923f78d739ad5ff42dee402c5ba27c02004f1.tar.xz |
Move adding SRCDIR/python to sys.path from
multiple SConscript files to SConstruct.
build/SConstruct:
Add SRCDIR/python to sys.path here.
python/SConscript:
Move adding SRCDIR/python to sys.path to SConstruct.
--HG--
extra : convert_revision : f598d670650f5b4fd501caaf073fe38b44d21855
Diffstat (limited to 'python/SConscript')
-rw-r--r-- | python/SConscript | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/python/SConscript b/python/SConscript index 8404bc4bd..9c15c6d50 100644 --- a/python/SConscript +++ b/python/SConscript @@ -30,9 +30,6 @@ import os, os.path, re, sys Import('env') -# tell python where to find m5 python code -sys.path.append(os.path.join(env['SRCDIR'], 'python')) - import m5scons def WriteEmbeddedPyFile(target, source, path, name, ext, filename): |