summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiziano Müller <dev-zero@gentoo.org>2008-06-05 20:04:08 +0000
committerTiziano Müller <dev-zero@gentoo.org>2008-06-05 20:04:08 +0000
commit5c6f2710325563fc39883e7e16c3d2b65475983e (patch)
treea5bc495c61ddd67034229c6749ec67457414f572 /dev-util/boost-build/files
parentRemoving games-fps/americas-army. (diff)
downloadgentoo-2-5c6f2710325563fc39883e7e16c3d2b65475983e.tar.gz
gentoo-2-5c6f2710325563fc39883e7e16c3d2b65475983e.tar.bz2
gentoo-2-5c6f2710325563fc39883e7e16c3d2b65475983e.zip
Fixed ICU compilation bug
(Portage version: 2.1.5.4)
Diffstat (limited to 'dev-util/boost-build/files')
-rw-r--r--dev-util/boost-build/files/1.35.0-fix_broken_icu_build.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-util/boost-build/files/1.35.0-fix_broken_icu_build.patch b/dev-util/boost-build/files/1.35.0-fix_broken_icu_build.patch
new file mode 100644
index 000000000000..b4611054c9b0
--- /dev/null
+++ b/dev-util/boost-build/files/1.35.0-fix_broken_icu_build.patch
@@ -0,0 +1,33 @@
+--- trunk/tools/build/v2/build/targets.jam (revision 45072)
++++ trunk/tools/build/v2/build/targets.jam (revision 45245)
+@@ -1170,5 +1170,5 @@
+ ECHO [ targets.indent ] "Building target '$(fn)'" ;
+ targets.increase-indent ;
+- ECHO [ targets.indent ] "Build request: " [ $(property-set).raw ] ;
++ ECHO [ targets.indent ] "Build request: " $(property-set) [ $(property-set).raw ] ;
+ local cf = [ build-system.command-line-free-features ] ;
+ ECHO [ targets.indent ] "Command line free features: " [ $(cf).raw ] ;
+@@ -1275,5 +1275,14 @@
+ # case we don't want any diagnostic. In the former case, we need
+ # diagnostics. FIXME
+- self.generated.$(property-set) = $(rproperties) ;
++
++ # If this target fails to build, add <build>no to properties
++ # to cause any parent target to fail to build. Except that it
++ # - does not work now, since we check for <build>no only in
++ # common properties, but not in properties that came from
++ # dependencies
++ # - it's not clear if that's a good idea anyway. The alias
++ # target, for example, should not fail to build if a dependency
++ # fails.
++ self.generated.$(property-set) = [ property-set.create <build>no ] ;
+ }
+ }
+@@ -1283,4 +1292,7 @@
+ {
+ ECHO [ targets.indent ] "Already built" ;
++ local ur = $(self.generated.$(property-set)) ;
++ ur = $(ur[0]) ;
++ ECHO [ targets.indent ] " Usage requirements " [ $(ur).raw ] ;
+ }
+ }