Get rid of vestiges of .mpy file handling.
authorSteve Reinhardt <stever@eecs.umich.edu>
Sat, 4 Jun 2005 22:41:43 +0000 (18:41 -0400)
committerSteve Reinhardt <stever@eecs.umich.edu>
Sat, 4 Jun 2005 22:41:43 +0000 (18:41 -0400)
--HG--
extra : convert_revision : 309b051be3473e2d42d3200c1af84227d01b5900

python/SConscript
util/pbs/job.py

index 9c15c6d50124767e11549732a0d5b30b3fe31288..7042a58e66b0cd1e233bb7ba2f05c819ac529099 100644 (file)
@@ -182,7 +182,7 @@ EmbedMap %(name)s("%(fname)s",
 
 # base list of .py files to embed
 embedded_py_files = [ '../util/pbs/jobfile.py' ]
-# add all .py and .mpy files in python/m5 
+# add all .py 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):
@@ -192,7 +192,7 @@ for root, dirs, files in os.walk(objpath, topdown=True):
 
     assert(root.startswith(objpath))
     for f in files:
-        if f.endswith('.mpy') or f.endswith('.py'):
+        if f.endswith('.py'):
             embedded_py_files.append(os.path.join(root, f))
 
 embedfile_hh = os.path.join(env['SRCDIR'], 'base/embedfile.hh')
index 5eed0cd758eb8e3b34e88bd68f089694878d4767..4ead50de9a4c2f66cbad103b8cc08b1b1a145b53 100755 (executable)
@@ -134,7 +134,7 @@ if __name__ == '__main__':
 
     os.symlink(joinpath(jobdir, 'output'), 'status.out')
 
-    args = [ joinpath(basedir, 'm5'), joinpath(basedir, 'run.mpy') ]
+    args = [ joinpath(basedir, 'm5'), joinpath(basedir, 'run.py') ]
     if not len(args):
         sys.exit("no arguments")