From b55f4ccf0ed5587a3b9f6e0ff415ee6e050a28a9 Mon Sep 17 00:00:00 2001 From: Gary Oberbrunner Date: Thu, 11 Dec 2008 03:16:12 +0000 Subject: Fixed syntax and semantic errors in Mkdir example in man page, to fix issue #1755. --- doc/man/scons.1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 921103f..123ca5c 100644 --- 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 -- cgit v0.12