diff options
author | Nathan Binkert <binkertn@umich.edu> | 2006-11-12 18:49:16 -0800 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2006-11-12 18:49:16 -0800 |
commit | d2d44317528ffadf81fbb95c92291d8d2d4a2190 (patch) | |
tree | d874b36b4d9a65c70c4e797d0e544756d5d0efdf /src/python/SConscript | |
parent | 6098f57b08d27a66ba9b2f8780a69e73b0e67c29 (diff) | |
download | gem5-d2d44317528ffadf81fbb95c92291d8d2d4a2190.tar.xz |
Create a module called internal where swigged stuff goes.
Rename cc_main to internal.main
--HG--
extra : convert_revision : e938005f600fbf8a43435e29426a948f4501f072
Diffstat (limited to 'src/python/SConscript')
-rw-r--r-- | src/python/SConscript | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/python/SConscript b/src/python/SConscript index c9e713199..5c351c32a 100644 --- a/src/python/SConscript +++ b/src/python/SConscript @@ -98,12 +98,12 @@ pyzip_files.append('m5/defines.py') pyzip_files.append('m5/info.py') pyzip_files.append(join(env['ROOT'], 'util/pbs/jobfile.py')) -env.Command(['swig/cc_main_wrap.cc', 'm5/cc_main.py'], - 'swig/cc_main.i', +env.Command(['swig/main_wrap.cc', 'm5/internal/main.py'], + 'swig/main.i', '$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} ' '-o ${TARGETS[0]} $SOURCES') -pyzip_dep_files.append('m5/cc_main.py') +pyzip_dep_files.append('m5/internal/main.py') # Action function to build the zip archive. Uses the PyZipFile module # included in the standard Python library. |