From 0e3c8d78a92816363930f5527fd6eacfe4f80792 Mon Sep 17 00:00:00 2001 From: stevenknight Date: Tue, 5 Apr 2005 12:42:58 +0000 Subject: [PATCH] Fix a bad example in the man page. (Sanjoy Mahajan) git-svn-id: http://scons.tigris.org/svn/scons/trunk@1277 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- doc/man/scons.1 | 2 +- src/CHANGES.txt | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/doc/man/scons.1 b/doc/man/scons.1 index ffb326dc..dd398c53 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -8835,7 +8835,7 @@ that env = Environment(TMPBUILD = '/tmp/builddir') env.Command('foo.out', 'foo.in', [Mkdir('$TMPBUILD'), - Copy('${SOURCE.dir}', '$TMPBUILD') + Copy('$TMPBUILD', '${SOURCE.dir}') "cd $TMPBUILD && make", Delete('$TMPBUILD')]) .EE diff --git a/src/CHANGES.txt b/src/CHANGES.txt index e1a81ab0..00973cf8 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -272,6 +272,10 @@ RELEASE 0.97 - XXX - Make ParseConfig() recognize and add -mno-cygwin to $LINKFLAGS and $CCFLAGS, and -mwindows to $LINKFLAGS. + From Sanjoy Mahajan: + + - Fix a bad use of Copy() in an example in the man page. + From Michael McCracken: - Add a new "applelink" tool to handle the things like Frameworks and -- 2.26.2