diff options
author | Steven Knight <knight@baldmt.com> | 2004-08-17 23:14:59 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-08-17 23:14:59 (GMT) |
commit | dd95a91a581b3ff41b22fa781d1337dd2a6577bc (patch) | |
tree | 3be53d9c53f1a263095130e39e07328bcae51f2b /test/LIBPATH.py | |
parent | a08e3ae7893a19820b11633822a68af2625baec9 (diff) | |
download | SCons-dd95a91a581b3ff41b22fa781d1337dd2a6577bc.zip SCons-dd95a91a581b3ff41b22fa781d1337dd2a6577bc.tar.gz SCons-dd95a91a581b3ff41b22fa781d1337dd2a6577bc.tar.bz2 |
Portability fixes for Mac OS Xin tests. (Gary Oberbrunner)
Diffstat (limited to 'test/LIBPATH.py')
-rw-r--r-- | test/LIBPATH.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/LIBPATH.py b/test/LIBPATH.py index b9318a0..86e292a 100644 --- a/test/LIBPATH.py +++ b/test/LIBPATH.py @@ -152,7 +152,7 @@ test.up_to_date(arguments = '.') # We need at least one file for some implementations of the Library # builder, notably the SGI one. -test.write('empty.c', '') +test.write('empty.c', 'int a=0;\n') # Check that a null-string LIBPATH doesn't blow up. test.write('SConstruct', """ |