projects
/
scons.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a03eb9e
)
Fixed syntax and semantic errors in Mkdir example in man page, to fix issue #1755.
author
garyo
<garyo@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Thu, 11 Dec 2008 03:16:12 +0000
(
03:16
+0000)
committer
garyo
<garyo@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Thu, 11 Dec 2008 03:16:12 +0000
(
03:16
+0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@3825
fdb21ef1
-2011-0410-befe-
b5e4ea1792b1
doc/man/scons.1
patch
|
blob
|
history
diff --git
a/doc/man/scons.1
b/doc/man/scons.1
index 921103f740a405485a0d597ed02787617aa52e8a..123ca5cf5d786895f4656a4c134e2aa8e2765ece 100644
(file)
--- a/
doc/man/scons.1
+++ b/
doc/man/scons.1
@@
-8833,10
+8833,10
@@
Examples:
Execute(Mkdir('/tmp/outputdir'))
env.Command('foo.out', 'foo.in',
- [Mkdir('/tmp/builddir',
- Copy('
$SOURCE', '/tmp/builddir/foo.in')
+ [Mkdir('/tmp/builddir'
)
,
+ Copy('
/tmp/builddir/foo.in', '$SOURCE'),
"cd /tmp/builddir && make",
- Copy('
/tmp/builddir/foo.out', '$TARGET
')])
+ Copy('
$TARGET', '/tmp/builddir/foo.out
')])
.EE
.TP