Update of /cvsroot/boost/boost
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv18554
Modified Files:
Jamfile.v2
Log Message:
Fix deficient algorithm finding the headers to install.
Index: Jamfile.v2
===================================================================
RCS file: /cvsroot/boost/boost/Jamfile.v2,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- Jamfile.v2 24 Jun 2006 21:36:35 -0000 1.35
+++ Jamfile.v2 1 Jul 2006 22:59:44 -0000 1.36
@@ -96,6 +96,7 @@
import set ;
import stage ;
import package ;
+import path ;
constant BOOST_VERSION : 1.35.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