summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorNathan Binkert <nate@binkert.org>2009-03-17 12:45:41 -0700
committerNathan Binkert <nate@binkert.org>2009-03-17 12:45:41 -0700
commitf3621f11d5fe19557984e5554983a69bb89fb8a2 (patch)
tree3f6cccc30509afd82729f0710345347c0f1d50f4 /SConstruct
parent4eea8acaf2c3a7b2103f827d81c15379efde4a7c (diff)
downloadgem5-f3621f11d5fe19557984e5554983a69bb89fb8a2.tar.xz
ply: put the absolute path to ply in the environment, not a relative one
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 533da927c..db6c7f9e5 100644
--- a/SConstruct
+++ b/SConstruct
@@ -374,7 +374,7 @@ Export('base_dir')
Export('extras_dir_list')
# M5_PLY is used by isa_parser.py to find the PLY package.
-env.Append(ENV = { 'M5_PLY' : str(Dir('ext/ply')) })
+env.Append(ENV = { 'M5_PLY' : Dir('ext/ply').abspath })
CXX_version = read_command([env['CXX'],'--version'], exception=False)
CXX_V = read_command([env['CXX'],'-V'], exception=False)