From 9fb18172ba22c54fbd54feae91f8972f83993ba2 Mon Sep 17 00:00:00 2001 From: garyo Date: Mon, 11 Jan 2010 02:53:30 +0000 Subject: [PATCH] Fix doc bug #2502 (Ignore example was wrong) git-svn-id: http://scons.tigris.org/svn/scons/trunk@4606 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- doc/user/depends.in | 5 +++-- doc/user/depends.xml | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) 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') -- 2.26.2