summaryrefslogtreecommitdiff
path: root/test/RANLIB
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2016-11-28 10:35:43 -0800
committerWilliam Deegan <bill@baddogconsulting.com>2016-11-28 10:35:43 -0800
commitc1a5840493d5530b2cf9eb27934471c3f8de961e (patch)
treeede8626d8906f5b3c13710cd6380cd8c05e8ce28 /test/RANLIB
parent237e6b153a675133f7b0a5c4910fdb59fa193551 (diff)
downloadscons-c1a5840493d5530b2cf9eb27934471c3f8de961e.tar.gz
fix test to work after updates to ar.py tool
Diffstat (limited to 'test/RANLIB')
-rw-r--r--test/RANLIB/RANLIBFLAGS.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/RANLIB/RANLIBFLAGS.py b/test/RANLIB/RANLIBFLAGS.py
index 0de0cdcd..e13bac89 100644
--- a/test/RANLIB/RANLIBFLAGS.py
+++ b/test/RANLIB/RANLIBFLAGS.py
@@ -42,8 +42,8 @@ test.file_fixture('wrapper.py')
test.write('SConstruct', """
foo = Environment(LIBS = ['foo'], LIBPATH = ['.'])
-bar = Environment(LIBS = ['bar'], LIBPATH = ['.'], RANLIB = '',
- RANLIBFLAGS = foo.subst(r'%(_python_)s wrapper.py $RANLIB $RANLIBFLAGS'))
+bar = Environment(LIBS = ['bar'], LIBPATH = ['.'], RANLIB = r'%(_python_)s wrapper.py',
+ RANLIBFLAGS = foo.subst(r'$RANLIB $RANLIBFLAGS'))
foo.Library(target = 'foo', source = 'foo.c')
bar.Library(target = 'bar', source = 'bar.c')