From: Nilay Vaish Date: Tue, 11 Sep 2012 22:47:21 +0000 (-0500) Subject: se.py: removes error in passing options to a binary X-Git-Tag: stable_2013_06_16~425 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=89a5ba1ef865d5eb58f2325eec5ebbec56b42b08;p=gem5.git se.py: removes error in passing options to a binary --- diff --git a/configs/example/se.py b/configs/example/se.py index 1fefdc4fc..887e414ca 100644 --- a/configs/example/se.py +++ b/configs/example/se.py @@ -86,7 +86,7 @@ def get_processes(options): process.executable = wrkld if len(pargs) > idx: - process.cmd = [wrkld] + [" "] + [pargs[idx]] + process.cmd = [wrkld] + pargs[idx].split() else: process.cmd = [wrkld]