summaryrefslogtreecommitdiffstats
path: root/test/Repository
diff options
context:
space:
mode:
Diffstat (limited to 'test/Repository')
-rw-r--r--test/Repository/LIBPATH.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Repository/LIBPATH.py b/test/Repository/LIBPATH.py
index 96b198e..4b249e5 100644
--- a/test/Repository/LIBPATH.py
+++ b/test/Repository/LIBPATH.py
@@ -49,7 +49,7 @@ def write_LIBDIRFLAGS(env, target, source):
pre = env.subst('$LIBDIRPREFIX')
suf = env.subst('$LIBDIRSUFFIX')
f = open(str(target[0]), 'wb')
- for arg in string.split(env.subst('$_LIBDIRFLAGS')):
+ for arg in string.split(env.subst('$_LIBDIRFLAGS', target=target)):
if arg[:len(pre)] == pre:
arg = arg[len(pre):]
if arg[-len(suf):] == suf: