Move mpy_importer into m5 package (it logically
authorSteve Reinhardt <stever@eecs.umich.edu>
Mon, 14 Mar 2005 12:52:41 +0000 (07:52 -0500)
committerSteve Reinhardt <stever@eecs.umich.edu>
Mon, 14 Mar 2005 12:52:41 +0000 (07:52 -0500)
belongs there since it's so tied in with m5.config).

python/SConscript:
    mpy_importer.py now in m5 package

--HG--
extra : convert_revision : 3cd7af4e1cd9338aa6bed5306c824ac5f0965085

python/SConscript

index a50903964c0234e9ea399cb053f2d1a4914a9cd0..8404bc4bd82c53ec9d0c47683699c35e49553fa5 100644 (file)
@@ -183,8 +183,10 @@ EmbedMap %(name)s("%(fname)s",
 /* namespace */ }
 '''
 
-embedded_py_files = [ 'mpy_importer.py', '../util/pbs/jobfile.py' ]
-objpath = os.path.join(env['SRCDIR'], 'python/m5')
+# base list of .py files to embed
+embedded_py_files = [ '../util/pbs/jobfile.py' ]
+# add all .py and .mpy files in python/m5 
+objpath = os.path.join(env['SRCDIR'], 'python', 'm5')
 for root, dirs, files in os.walk(objpath, topdown=True):
     for i,dir in enumerate(dirs):
         if dir == 'SCCS':