Update of /cvsroot/boost/boost
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv19613

Modified Files:
      Tag: RC_1_34_0
        Jamfile.v2 
Log Message:
Fix deficient algorithm finding the headers to install. (merge from head)

Index: Jamfile.v2
===================================================================
RCS file: /cvsroot/boost/boost/Jamfile.v2,v
retrieving revision 1.32.2.1.2.1
retrieving revision 1.32.2.1.2.2
diff -u -d -r1.32.2.1.2.1 -r1.32.2.1.2.2
--- Jamfile.v2  28 Jun 2006 02:37:49 -0000      1.32.2.1.2.1
+++ Jamfile.v2  1 Jul 2006 23:01:42 -0000       1.32.2.1.2.2
@@ -96,6 +96,7 @@
 import set ;
 import stage ;
 import package ;
+import path ;
 
 constant BOOST_VERSION : 1.34.0 ;
 
@@ -242,14 +243,28 @@
 # Install to system location.
 
 local patterns = *.hpp *.ipp *.h *.inc ;
-local dirs = boost boost/* boost/*/* ;
+local dir = boost ;
+local headers ;
+while $(dir)
+{
+    local files = [ glob $(dir)/$(patterns) ] ;
+    if $(files)
+    {
+        headers += $(files) ;
+        dir = $(dir)/* ;
+    }
+    else
+    {
+        dir = ;
+    }
+}
 
 # Complete install
 package.install install
     : <install-source-root>. # No specific requirements
     : # No binaries
     : libs/$(libraries)/build
-    : [ glob $(dirs)/$(patterns) ]
+    : $(headers)
     ;
 
 # Install just library.


Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to