summaryrefslogtreecommitdiffstats
path: root/test/Library.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-10-31 03:47:18 (GMT)
committerSteven Knight <knight@baldmt.com>2001-10-31 03:47:18 (GMT)
commit00c3ada748b164ecf909727fa81f521dde72fda9 (patch)
tree123feebbeb8fd1ea7c4dbc0de3cd81b0e5f6f8ad /test/Library.py
parentae1737265e92978dd851292340d21af6e2269196 (diff)
downloadSCons-00c3ada748b164ecf909727fa81f521dde72fda9.zip
SCons-00c3ada748b164ecf909727fa81f521dde72fda9.tar.gz
SCons-00c3ada748b164ecf909727fa81f521dde72fda9.tar.bz2
Make the (s) and variables upper-case.
Diffstat (limited to 'test/Library.py')
-rw-r--r--test/Library.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Library.py b/test/Library.py
index 7e832ca..3c50f3d 100644
--- a/test/Library.py
+++ b/test/Library.py
@@ -31,7 +31,7 @@ test = TestSCons.TestSCons()
#XXX Need to switch TestBld to Program() when LIBS variable is working.
test.write('SConstruct', """
TestBld = Builder(name='TestBld',
- action='cc -o $target $sources -L./ -lfoo1 -lfoo2 -lfoo3')
+ action='cc -o $TARGET $SOURCES -L./ -lfoo1 -lfoo2 -lfoo3')
env = Environment(BUILDERS=[ TestBld, Library ])
env.Library(target = 'foo1', source = 'f1.c')
env.Library(target = 'foo2', source = 'f2a.c f2b.c f2c.c')