diff options
author | Dirk Baechle <dl9obn@darc.de> | 2015-08-06 21:50:31 (GMT) |
---|---|---|
committer | Dirk Baechle <dl9obn@darc.de> | 2015-08-06 21:50:31 (GMT) |
commit | d152e4ce442ae724084c9304c9e36e882fa5850d (patch) | |
tree | 4a4d0d6b99d47221bcab4166c90adbf041de07e1 /test/Interactive/variant_dir.py | |
parent | f1dbc3edd79cfbc80e469377bf8d45624cc04d40 (diff) | |
download | SCons-d152e4ce442ae724084c9304c9e36e882fa5850d.zip SCons-d152e4ce442ae724084c9304c9e36e882fa5850d.tar.gz SCons-d152e4ce442ae724084c9304c9e36e882fa5850d.tar.bz2 |
- fixed several tests and tools that still used Node attributes directly
(found by disabling the __getattr__ in Node/FS.py)
Diffstat (limited to 'test/Interactive/variant_dir.py')
-rw-r--r-- | test/Interactive/variant_dir.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Interactive/variant_dir.py b/test/Interactive/variant_dir.py index f36bd0a..7f2c42f 100644 --- a/test/Interactive/variant_dir.py +++ b/test/Interactive/variant_dir.py @@ -41,10 +41,10 @@ marker_2 = test.workpath('markers', '2') test.write(['work', 'SConstruct'], """\ # build the plugin binaries -basepath = str(Dir('#').abspath) +basepath = str(Dir('#').get_abspath()) env = Environment() env.Append(BASEPATH=basepath) -env.Append(ENV = {'BASEPATH' : str(Dir('#').abspath)}) +env.Append(ENV = {'BASEPATH' : str(Dir('#').get_abspath())}) SConscript( 'sub1/SConscript', variant_dir = 'build', duplicate=False, |