changeset 9116be67b6d8 in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=9116be67b6d8
description:
        ply: put the absolute path to ply in the environment, not a relative one

diffstat:

1 file changed, 1 insertion(+), 1 deletion(-)
SConstruct |    2 +-

diffs (12 lines):

diff -r 4df1c7698e52 -r 9116be67b6d8 SConstruct
--- a/SConstruct        Mon Mar 16 15:16:58 2009 -0700
+++ b/SConstruct        Tue Mar 17 12:45:41 2009 -0700
@@ -374,7 +374,7 @@
 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)
_______________________________________________
m5-dev mailing list
m5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to