summaryrefslogtreecommitdiffstats
path: root/test/RANLIB
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2016-11-28 18:35:43 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2016-11-28 18:35:43 (GMT)
commita3aa375f59535bfbe0aecdaabdeb40bc419125e1 (patch)
treeede8626d8906f5b3c13710cd6380cd8c05e8ce28 /test/RANLIB
parente5090adbeb669fbbd8c7794d1eccbc363f950891 (diff)
downloadSCons-a3aa375f59535bfbe0aecdaabdeb40bc419125e1.zip
SCons-a3aa375f59535bfbe0aecdaabdeb40bc419125e1.tar.gz
SCons-a3aa375f59535bfbe0aecdaabdeb40bc419125e1.tar.bz2
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 0de0cdc..e13bac8 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')