$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r77631 - trunk/tools/build/v2/doc/src
From: steven_at_[hidden]
Date: 2012-03-29 14:13:09
Author: steven_watanabe
Date: 2012-03-29 14:13:08 EDT (Thu, 29 Mar 2012)
New Revision: 77631
URL: http://svn.boost.org/trac/boost/changeset/77631
Log:
Document implicit-dependency
Text files modified: 
   trunk/tools/build/v2/doc/src/reference.xml |    14 ++++++++++++++                          
   trunk/tools/build/v2/doc/src/tasks.xml     |     2 +-                                      
   2 files changed, 15 insertions(+), 1 deletions(-)
Modified: trunk/tools/build/v2/doc/src/reference.xml
==============================================================================
--- trunk/tools/build/v2/doc/src/reference.xml	(original)
+++ trunk/tools/build/v2/doc/src/reference.xml	2012-03-29 14:13:08 EDT (Thu, 29 Mar 2012)
@@ -455,6 +455,20 @@
         </listitem>
       </varlistentry>
 
+      <varlistentry><term><anchor id="bbv2.builtin.features.implicit-dependency"/>
+        <literal>implicit-dependency</literal></term>
+        <indexterm><primary>implicit-dependency</primary></indexterm>
+
+        <listitem>
+          <simpara>
+            Indicates that the target named by the value of this feature
+            may produce files that are included by the sources of the
+            target being declared.  See <xref linkend="bbv2.reference.generated_headers"/>
+            for more information.
+          </simpara>
+        </listitem>
+      </varlistentry>
+
 
       <varlistentry><term><anchor id="bbv2.builtin.features.use"/>
           <literal>use</literal></term>
Modified: trunk/tools/build/v2/doc/src/tasks.xml
==============================================================================
--- trunk/tools/build/v2/doc/src/tasks.xml	(original)
+++ trunk/tools/build/v2/doc/src/tasks.xml	2012-03-29 14:13:08 EDT (Thu, 29 Mar 2012)
@@ -704,7 +704,7 @@
       Making this mechanism work across main target boundaries is possible, but
       imposes certain overhead. For that reason, if there is implicit dependency
       on files from other main targets, the <literal><implicit-dependency>
-      </literal> [ link ] feature must be used, for example:
+      </literal> feature must be used, for example:
 <programlisting>
 lib parser : parser.y ;
 exe app : app.cpp : <implicit-dependency>parser ;