From: garyo Date: Mon, 11 Jan 2010 02:53:30 +0000 (+0000) Subject: Fix doc bug #2502 (Ignore example was wrong) X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9fb18172ba22c54fbd54feae91f8972f83993ba2;p=scons.git Fix doc bug #2502 (Ignore example was wrong) git-svn-id: http://scons.tigris.org/svn/scons/trunk@4606 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/doc/user/depends.in b/doc/user/depends.in index f0fa853e..50669737 100644 --- a/doc/user/depends.in +++ b/doc/user/depends.in @@ -1458,8 +1458,9 @@ - hello = Program('hello.c') - Ignore(hello, 'hello.h') + hello_obj=Object('hello.c') + hello = Program(hello_obj) + Ignore(hello_obj, 'hello.h') #include "hello.h" diff --git a/doc/user/depends.xml b/doc/user/depends.xml index 0e9740f4..46760480 100644 --- a/doc/user/depends.xml +++ b/doc/user/depends.xml @@ -1424,8 +1424,9 @@ - hello = Program('hello.c') - Ignore(hello, 'hello.h') + hello_obj=Object('hello.c') + hello = Program(hello_obj) + Ignore(hello_obj, 'hello.h')