summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDirk Baechle <dl9obn@darc.de>2013-10-06 18:04:55 (GMT)
committerDirk Baechle <dl9obn@darc.de>2013-10-06 18:04:55 (GMT)
commit17832ddc1e166221b0cd20da3a6969a65deba247 (patch)
treefa06a018059219513659d5424b5bc026dc945b73
parenta177bfae9c77a166aba93a8c0c4ab4cfc9012e71 (diff)
downloadSCons-17832ddc1e166221b0cd20da3a6969a65deba247.zip
SCons-17832ddc1e166221b0cd20da3a6969a65deba247.tar.gz
SCons-17832ddc1e166221b0cd20da3a6969a65deba247.tar.bz2
- corrected dependency example
-rw-r--r--doc/generated/examples/depends_ex1_5.xml2
-rw-r--r--doc/user/depends.xml2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/generated/examples/depends_ex1_5.xml b/doc/generated/examples/depends_ex1_5.xml
index 136def6..abbe64e 100644
--- a/doc/generated/examples/depends_ex1_5.xml
+++ b/doc/generated/examples/depends_ex1_5.xml
@@ -5,5 +5,5 @@ cc -o hello hello.o
% [CHANGE A COMMENT IN hello.c]
% <userinput>scons -Q hello</userinput>
cc -o hello.o -c hello.c
-cc -o hello hello.o
+scons: `hello' is up to date.
</screen>
diff --git a/doc/user/depends.xml b/doc/user/depends.xml
index 3882af7..a5639a1 100644
--- a/doc/user/depends.xml
+++ b/doc/user/depends.xml
@@ -64,7 +64,7 @@ Program('hello.c')
</file>
<file name="hello.c">
int main() { printf("Hello, world!\n"); }
- </file>
+</file>
</scons_example>
<scons_output example="depends_ex1" os="posix" suffix="1">