summaryrefslogtreecommitdiff
path: root/configs/common/Benchmarks.py
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2011-02-24 02:14:45 -0800
committerGabe Black <gblack@eecs.umich.edu>2011-02-24 02:14:45 -0800
commitaa0cd525048ef3e4b6db706d7852bd16729a807f (patch)
treef1eee6495b6d003b8d20f7a268dbfadc3df9b2a3 /configs/common/Benchmarks.py
parentae52ff631f80f970b8bee60237aefd927fa298bf (diff)
downloadgem5-aa0cd525048ef3e4b6db706d7852bd16729a807f.tar.xz
Configs: Explicitly import env in Benchmarks.py
env was being implicitly imported into Benchmarks.py through SysPaths.py. This change brings it in explicitly in the file where it's used.
Diffstat (limited to 'configs/common/Benchmarks.py')
-rw-r--r--configs/common/Benchmarks.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/configs/common/Benchmarks.py b/configs/common/Benchmarks.py
index d1c69d3f8..366152d62 100644
--- a/configs/common/Benchmarks.py
+++ b/configs/common/Benchmarks.py
@@ -26,7 +26,8 @@
#
# Authors: Ali Saidi
-from SysPaths import *
+from SysPaths import script, disk, binary
+from os import environ as env
from m5.defines import buildEnv
class SysConfig: