summaryrefslogtreecommitdiff
path: root/test/Install
diff options
context:
space:
mode:
authorDirk Baechle <dl9obn@darc.de>2015-02-27 00:44:19 +0100
committerDirk Baechle <dl9obn@darc.de>2015-02-27 00:44:19 +0100
commitb2230ada31c8a64f44cf2afb15d80374307fc13a (patch)
treee4e8f3ef044c39a930235a39bb7301d35b0300ff /test/Install
parent4ce07298d57859d28bbef0cf5f07c10725bb51e5 (diff)
downloadscons-b2230ada31c8a64f44cf2afb15d80374307fc13a.tar.gz
- switching Node class and NodeInfo/Binfo to using slots
- memoizer subsystem now uses decorators instead of the metaclass approach
Diffstat (limited to 'test/Install')
-rw-r--r--test/Install/wrap-by-attribute.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Install/wrap-by-attribute.py b/test/Install/wrap-by-attribute.py
index 912551e2..02513af5 100644
--- a/test/Install/wrap-by-attribute.py
+++ b/test/Install/wrap-by-attribute.py
@@ -58,10 +58,10 @@ env.SconsInternalInstallFunc = env.Install
env.SconsInternalInstallAsFunc = env.InstallAs
def InstallWithDestDir(dir, source):
- abspath = os.path.splitdrive(env.Dir(dir).abspath)[1]
+ abspath = os.path.splitdrive(env.Dir(dir).get_abspath())[1]
return env.SconsInternalInstallFunc('$DESTDIR'+abspath, source)
def InstallAsWithDestDir(target, source):
- abspath = os.path.splitdrive(env.File(target).abspath)[1]
+ abspath = os.path.splitdrive(env.File(target).get_abspath())[1]
return env.SconsInternalInstallAsFunc('$DESTDIR'+abspath, source)
# Add the wrappers directly as attributes.