From aa0cd525048ef3e4b6db706d7852bd16729a807f Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Thu, 24 Feb 2011 02:14:45 -0800 Subject: [PATCH] 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. --- configs/common/Benchmarks.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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: -- 2.30.2