diff options
author | Steven Knight <knight@baldmt.com> | 2002-04-15 18:43:38 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-04-15 18:43:38 (GMT) |
commit | a8176f609ff3ecc090f51830408d3b4dc6338d7e (patch) | |
tree | bab059042f2f8cbc85dcf7a619dbebbbe23dc4fb /test/LIBPATH.py | |
parent | 05029e336146444501a66b53e4699c09d6e08977 (diff) | |
download | SCons-a8176f609ff3ecc090f51830408d3b4dc6338d7e.zip SCons-a8176f609ff3ecc090f51830408d3b4dc6338d7e.tar.gz SCons-a8176f609ff3ecc090f51830408d3b4dc6338d7e.tar.bz2 |
Big change for shared libraries and a bunch of other flexibility. (Charles Crain)
Diffstat (limited to 'test/LIBPATH.py')
-rw-r--r-- | test/LIBPATH.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/LIBPATH.py b/test/LIBPATH.py index 30bc421..afb87c6 100644 --- a/test/LIBPATH.py +++ b/test/LIBPATH.py @@ -101,9 +101,7 @@ test.run(program = prog1, stdout = "f1.c 1\nprog.c\n") test.run(program = prog2, stdout = "f1.c 1\nprog.c\n") - -test.up_to_date(arguments = '.') - +#test.up_to_date(arguments = '.') # Change LIBPATH and make sure we don't rebuild because of it. test.write('SConstruct', """ env1 = Environment(LIBS = [ 'foo1' ], @@ -117,7 +115,7 @@ env2.Program(target = 'prog2', source = 'prog.c') env2.Library(target = 'foo2', source = 'f1.c') """) -test.up_to_date(arguments = '.', stderr = None) +test.up_to_date(arguments = '.', stderr=None) test.write('f1.c', r""" void |