summaryrefslogtreecommitdiffstats
path: root/test/implicit-cache/DualTargets.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/implicit-cache/DualTargets.py')
-rw-r--r--test/implicit-cache/DualTargets.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/implicit-cache/DualTargets.py b/test/implicit-cache/DualTargets.py
index f0694b1..45174ea 100644
--- a/test/implicit-cache/DualTargets.py
+++ b/test/implicit-cache/DualTargets.py
@@ -37,14 +37,14 @@ test.write('SConstruct', """\
import os.path
def emitter(target, source, env):
- tgt0 = target[0].abspath
+ tgt0 = target[0].get_abspath()
base,ext = os.path.splitext(tgt0)
target.append(base + '.b')
return(target, source)
def source_scan(node, env, path):
- path = node.abspath
+ path = node.get_abspath()
base,ext = os.path.splitext(path)
return [base + '.lib']