Man page fixes.
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Thu, 27 Mar 2003 11:47:45 +0000 (11:47 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Thu, 27 Mar 2003 11:47:45 +0000 (11:47 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@624 fdb21ef1-2011-0410-befe-b5e4ea1792b1

doc/man/scons.1
src/CHANGES.txt

index 5da2c9401ae4ea4118ffae8e402888f0fa5ad3ce..367cc37160a6633385eef18b4026d16b579c7ee8 100644 (file)
@@ -1538,7 +1538,7 @@ Installs one or more files in a destination directory.
 The file names remain the same.
 
 .ES
-env.Install(dir = '/usr/local/bin', source = 'foo bar')
+env.Install(dir = '/usr/local/bin', source = ['foo', 'bar'])
 .EE
 
 .TP
@@ -1552,8 +1552,8 @@ list different numbers of files.
 .ES
 env.InstallAs(target = '/usr/local/bin/foo',
               source = 'foo_debug')
-env.InstallAs(target = '../lib/libfoo.a ../lib/libbar.a',
-              source = 'libFOO.a libBAR.a')
+env.InstallAs(target = ['../lib/libfoo.a', '../lib/libbar.a'],
+              source = ['libFOO.a', 'libBAR.a'])
 .EE
 
 .TP
@@ -2720,7 +2720,7 @@ method:
 env2 = env.Copy(CC="cl.exe")
 .EE
 
-.SS Costruction Variable Options
+.SS Construction Variable Options
 
 Often when building software, various options need to be specified at build
 time that are not known when the SConstruct/SConscript files are
@@ -4361,7 +4361,7 @@ or by specifying a dot ("scons .").
 
 .ES
 env = Environment()
-env.Program(target = 'foo', source = 'f1.c f2.c f3.c')
+env.Program(target = 'foo', source = Split('f1.c f2.c f3.c'))
 .EE
 
 .SS Setting a Compilation Flag
@@ -4579,18 +4579,18 @@ SConstruct:
 libA/SConscript:
 
     Import('env')
-    env.Library('a', 'a1.c a2.c a3.c')
+    env.Library('a', Split('a1.c a2.c a3.c'))
 
 libB/SConscript:                                                  
 
     Import('env')
-    env.Library('b', 'b1.c b2.c b3.c')
+    env.Library('b', Split('b1.c b2.c b3.c'))
 
 Main/SConscript:
 
     Import('env')
     e = env.Copy(LIBS = ['a', ','b'])
-    e.Program('foo', 'm1.c m2.c m3.c')
+    e.Program('foo', Split('m1.c m2.c m3.c'))
 .EE
 
 The '#' in the LIBPATH directories specify that they're relative to the
index ddfe712649c36242552ab94663af1e2c2fda741e..c73a6b18d72f7593ab8bf7ff61938859acbeadcd 100644 (file)
@@ -49,8 +49,9 @@ RELEASE 0.12 - XXX
   - Add support for Tar and Zip files.
 
   - Better documentation of the different ways to export variables to a
-    subsidiary SConscript file.  Fix a documentation bug in a tools
-    example.
+    subsidiary SConscript file.  Fix documentation bugs in a tools
+    example, places that still assumed SCons split strings on white
+    space, and typos.
 
   - Support fetching arbitrary files from the TARGETS or SOURCES lists
     (e.g. ${SOURCES[2]}) when calculating the build signature of a