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.
This commit is contained in:
Gabe Black 2011-02-24 02:14:45 -08:00
parent ae52ff631f
commit aa0cd52504

View file

@ -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: