From 9bf4481e85bffa74d7b84ecd1a3e76b0df5a057b Mon Sep 17 00:00:00 2001 From: Gary Oberbrunner Date: Mon, 11 Jan 2010 02:53:30 +0000 Subject: Fix doc bug #2502 (Ignore example was wrong) --- 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 f0fa853..5066973 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 0e9740f..4676048 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') -- cgit v0.12