diff options
Diffstat (limited to 'doc/user')
-rw-r--r-- | doc/user/copyright.in | 2 | ||||
-rw-r--r-- | doc/user/copyright.sgml | 2 | ||||
-rw-r--r-- | doc/user/main.in | 4 | ||||
-rw-r--r-- | doc/user/main.sgml | 4 | ||||
-rw-r--r-- | doc/user/nodes.in | 2 | ||||
-rw-r--r-- | doc/user/nodes.sgml | 2 |
6 files changed, 8 insertions, 8 deletions
diff --git a/doc/user/copyright.in b/doc/user/copyright.in index 119f749..76e3e50 100644 --- a/doc/user/copyright.in +++ b/doc/user/copyright.in @@ -26,7 +26,7 @@ <blockquote> <para> - SCons User's Guide Copyright (c) 2004 Steven Knight + SCons User's Guide Copyright (c) 2004, 2005, 2006, 2007 Steven Knight </para> </blockquote> diff --git a/doc/user/copyright.sgml b/doc/user/copyright.sgml index 119f749..76e3e50 100644 --- a/doc/user/copyright.sgml +++ b/doc/user/copyright.sgml @@ -26,7 +26,7 @@ <blockquote> <para> - SCons User's Guide Copyright (c) 2004 Steven Knight + SCons User's Guide Copyright (c) 2004, 2005, 2006, 2007 Steven Knight </para> </blockquote> diff --git a/doc/user/main.in b/doc/user/main.in index af3b0ee..be302d7 100644 --- a/doc/user/main.in +++ b/doc/user/main.in @@ -101,10 +101,10 @@ <edition>Revision &buildrevision; (&builddate;)</edition> - <pubdate>2004</pubdate> + <pubdate>2004, 2005, 2006, 2007</pubdate> <copyright> - <year>2004</year> + <year>2004, 2005, 2006, 2007</year> <holder>Steven Knight</holder> </copyright> diff --git a/doc/user/main.sgml b/doc/user/main.sgml index af3b0ee..be302d7 100644 --- a/doc/user/main.sgml +++ b/doc/user/main.sgml @@ -101,10 +101,10 @@ <edition>Revision &buildrevision; (&builddate;)</edition> - <pubdate>2004</pubdate> + <pubdate>2004, 2005, 2006, 2007</pubdate> <copyright> - <year>2004</year> + <year>2004, 2005, 2006, 2007</year> <holder>Steven Knight</holder> </copyright> diff --git a/doc/user/nodes.in b/doc/user/nodes.in index a5d05dc..f5faf5a 100644 --- a/doc/user/nodes.in +++ b/doc/user/nodes.in @@ -296,7 +296,7 @@ import os.path program_list = Program('hello.c') program_name = str(program_list[0]) - if not os.path.exists(program_name) + if not os.path.exists(program_name): print program_name, "does not exist!" </file> <file name="hello.c"> diff --git a/doc/user/nodes.sgml b/doc/user/nodes.sgml index b6bcb89..114e9e0 100644 --- a/doc/user/nodes.sgml +++ b/doc/user/nodes.sgml @@ -300,7 +300,7 @@ import os.path program_list = Program('hello.c') program_name = str(program_list[0]) - if not os.path.exists(program_name) + if not os.path.exists(program_name): print program_name, "does not exist!" </programlisting> |