$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r64193 - trunk/tools/build/v2
From: ghost_at_[hidden]
Date: 2010-07-20 05:02:27
Author: vladimir_prus
Date: 2010-07-20 05:02:26 EDT (Tue, 20 Jul 2010)
New Revision: 64193
URL: http://svn.boost.org/trac/boost/changeset/64193
Log:
Install examples, too
Text files modified: 
   trunk/tools/build/v2/Jamroot.jam |    11 +++++++++++                             
   1 files changed, 11 insertions(+), 0 deletions(-)
Modified: trunk/tools/build/v2/Jamroot.jam
==============================================================================
--- trunk/tools/build/v2/Jamroot.jam	(original)
+++ trunk/tools/build/v2/Jamroot.jam	2010-07-20 05:02:26 EDT (Tue, 20 Jul 2010)
@@ -18,6 +18,16 @@
     bjam$(ext)
   ;
 
+local e1 = [ path.glob-tree $(SELF)/example : * : . .svn ] ;
+local e2 ;
+for e in $(e1)
+{
+    if [ CHECK_IF_FILE $(e) ]
+    {
+        e2 += $(e) ;
+    }    
+}
+
 package.install-data boost-build-core 
   : # Which subdir of $prefix/share
     boost-build  
@@ -28,6 +38,7 @@
     [ path.glob-tree $(SELF)/kernel : *.jam *.py ]
     [ path.glob-tree $(SELF)/util : *.jam *.py ]
     [ path.glob-tree $(SELF)/tools : *.jam *.py ]
+    $(e2)
   : # What is the root of the directory
     <install-source-root>.
   ;