summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-08-01 18:19:23 -0700
committerGabe Black <gblack@eecs.umich.edu>2007-08-01 18:19:23 -0700
commite719a3e4c058920fb5913a38fbe4976d53a0e6e2 (patch)
tree250c8a334c7393db03ae1ef83fa016b87ba9e0f6 /configs
parenta3e70f495749334670e9fa392c4212794707d0d8 (diff)
downloadgem5-e719a3e4c058920fb5913a38fbe4976d53a0e6e2.tar.xz
Fix how the "cmd" parameter is set in se.py and remove hack in x86 process initialization code.
--HG-- extra : convert_revision : 1fc741eea956ebfa4cef488eef4333d1f50617a6
Diffstat (limited to 'configs')
-rw-r--r--configs/example/se.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/example/se.py b/configs/example/se.py
index b294480f6..20fe75a21 100644
--- a/configs/example/se.py
+++ b/configs/example/se.py
@@ -64,7 +64,7 @@ if args:
process = LiveProcess()
process.executable = options.cmd
-process.cmd = options.cmd + " " + options.options
+process.cmd = [options.cmd] + options.options.split()
if options.input != "":
process.input = options.input