diff options
author | Gaurav Juvekar <gauravjuvekar@gmail.com> | 2017-01-28 08:44:53 (GMT) |
---|---|---|
committer | Gaurav Juvekar <gauravjuvekar@gmail.com> | 2017-01-28 08:44:53 (GMT) |
commit | cdac4f74fcad946a05754842a00c8ce1648751eb (patch) | |
tree | 2602b141d9cc176caa2630f4b3617bf3692fd25e /doc | |
parent | 1702eb64b1e803a3fe3760d706524bb238a4a286 (diff) | |
download | SCons-cdac4f74fcad946a05754842a00c8ce1648751eb.zip SCons-cdac4f74fcad946a05754842a00c8ce1648751eb.tar.gz SCons-cdac4f74fcad946a05754842a00c8ce1648751eb.tar.bz2 |
Fix documentation example output to match actual output (Fix #2788)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/user/sconf.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/user/sconf.xml b/doc/user/sconf.xml index fe933f1..109e468 100644 --- a/doc/user/sconf.xml +++ b/doc/user/sconf.xml @@ -2,7 +2,7 @@ <!DOCTYPE sconsdoc [ <!ENTITY % scons SYSTEM "../scons.mod"> %scons; - + <!ENTITY % builders-mod SYSTEM "../generated/builders.mod"> %builders-mod; <!ENTITY % functions-mod SYSTEM "../generated/functions.mod"> @@ -287,7 +287,7 @@ env = conf.Finish() <para> Check the size of a datatype by using the &CheckTypeSize; method: </para> - + <sconstruct> env = Environment() conf = Configure(env) @@ -295,7 +295,7 @@ int_size = conf.CheckTypeSize('unsigned int') print 'sizeof unsigned int is', int_size env = conf.Finish() </sconstruct> - + <screen> % <userinput>scons -Q</userinput> sizeof unsigned int is 4 @@ -456,7 +456,7 @@ env = conf.Finish() <screen> % <userinput>scons</userinput> scons: Reading SConscript file ... -Checking for MyLibrary... failed +Checking for MyLibrary... no MyLibrary is not installed! </screen> @@ -470,7 +470,7 @@ MyLibrary is not installed! <screen> % <userinput>scons</userinput> scons: Reading SConscript file ... -Checking for MyLibrary... failed +Checking for MyLibrary... yes scons: done reading SConscript scons: Building targets ... . |