[cig-commits] commit: Handle ipp files in boost

Mercurial hg at geodynamics.org
Tue Nov 22 22:48:57 PST 2011


changeset:   425:804a23469746
tag:         tip
user:        Walter Landry <wlandry at caltech.edu>
date:        Tue Nov 22 22:48:41 2011 -0800
files:       boost/SConscript
description:
Handle ipp files in boost


diff -r 99f81b632532 -r 804a23469746 boost/SConscript
--- a/boost/SConscript	Tue Nov 22 12:54:01 2011 -0800
+++ b/boost/SConscript	Tue Nov 22 22:48:41 2011 -0800
@@ -13,13 +13,13 @@ missing_depends=[]
 missing_depends=[]
 for root, dirs, files in os.walk("boost"):
     for d in dirs:
-        for f in Glob(root + '/' + d + '/*.hpp',strings=True):
+        for f in Glob(root + '/' + d + '/*.[ih]pp',strings=True):
             missing_depends.append(env['build_dir'] + '/include/' + f)
 Depends(config_hpp,missing_depends)
 
 
 for root, dirs, files in os.walk("boost"):
-    env.Install('include/' + root, Glob(root + '/*.hpp'))
+    env.Install('include/' + root, Glob(root + '/*.[ih]pp'))
 
 env.Append(CPPPATH=env['build_dir'] + '/boost')
 



More information about the CIG-COMMITS mailing list