summaryrefslogtreecommitdiffstats
path: root/doc/user/file-removal.xml
diff options
context:
space:
mode:
authorDirk Baechle <dl9obn@darc.de>2013-05-03 22:20:26 (GMT)
committerDirk Baechle <dl9obn@darc.de>2013-05-03 22:20:26 (GMT)
commit10afdcc2e22670940b7de6319f614cb177f83516 (patch)
tree6b262ad5ceb194593a52db5bbc5de3932cae28fa /doc/user/file-removal.xml
parent3c1250527d43864c309cbf0dd2f9356042124d21 (diff)
downloadSCons-10afdcc2e22670940b7de6319f614cb177f83516.zip
SCons-10afdcc2e22670940b7de6319f614cb177f83516.tar.gz
SCons-10afdcc2e22670940b7de6319f614cb177f83516.tar.bz2
- added filename prefix to all scons_example names
- added unique suffixes to each scons_output_command - extended SCons Docbook XSD by the new suffix attribute
Diffstat (limited to 'doc/user/file-removal.xml')
-rw-r--r--doc/user/file-removal.xml22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/user/file-removal.xml b/doc/user/file-removal.xml
index 5ff945b..654b93f 100644
--- a/doc/user/file-removal.xml
+++ b/doc/user/file-removal.xml
@@ -78,7 +78,7 @@
</para>
- <scons_example name="precious-ex1">
+ <scons_example name="fileremoval_precious-ex1">
<file name="SConstruct" printme="1">
env = Environment(RANLIBCOM='')
lib = env.Library('foo', ['f1.c', 'f2.c', 'f3.c'])
@@ -103,8 +103,8 @@
</para>
- <scons_output example="precious-ex1">
- <scons_output_command>scons -Q</scons_output_command>
+ <scons_output example="fileremoval_precious-ex1">
+ <scons_output_command suffix="1">scons -Q</scons_output_command>
</scons_output>
<para>
@@ -136,7 +136,7 @@
</para>
- <scons_example name="noclean-ex1">
+ <scons_example name="fileremoval_noclean-ex1">
<file name="SConstruct" printme="1">
env = Environment(RANLIBCOM='')
lib = env.Library('foo', ['f1.c', 'f2.c', 'f3.c'])
@@ -160,9 +160,9 @@
</para>
- <scons_output example="noclean-ex1">
- <scons_output_command>scons -Q</scons_output_command>
- <scons_output_command>scons -c</scons_output_command>
+ <scons_output example="fileremoval_noclean-ex1">
+ <scons_output_command suffix="1">scons -Q</scons_output_command>
+ <scons_output_command suffix="2">scons -c</scons_output_command>
</scons_output>
</section>
@@ -197,7 +197,7 @@
</para>
- <scons_example name="clean-ex1">
+ <scons_example name="fileremoval_clean-ex1">
<file name="S" printme="1">
t = Command('foo.out', 'foo.in', 'build -o $TARGET $SOURCE')
Clean(t, 'foo.log')
@@ -237,9 +237,9 @@
</para>
- <scons_output example="clean-ex1">
- <scons_output_command>scons -Q</scons_output_command>
- <scons_output_command>scons -Q -c</scons_output_command>
+ <scons_output example="fileremoval_clean-ex1">
+ <scons_output_command suffix="1">scons -Q</scons_output_command>
+ <scons_output_command suffix="2">scons -Q -c</scons_output_command>
</scons_output>
</section>