diff options
author | William Deegan <bill@baddogconsulting.com> | 2016-11-28 18:35:43 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2016-11-28 18:35:43 (GMT) |
commit | a3aa375f59535bfbe0aecdaabdeb40bc419125e1 (patch) | |
tree | ede8626d8906f5b3c13710cd6380cd8c05e8ce28 /test/RANLIB | |
parent | e5090adbeb669fbbd8c7794d1eccbc363f950891 (diff) | |
download | SCons-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.py | 4 |
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') |