diff options
author | Mike Gilbert <floppym@gentoo.org> | 2012-05-20 21:16:58 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2012-05-20 21:16:58 +0000 |
commit | 272fee62edf2d2bb2b7abde2b95ba23715944fc4 (patch) | |
tree | aef9789027057a2b76bdf71c84beeed49a672fda /dev-libs/boost | |
parent | Fix building for ~x86-fbsd wrt #400929 by Naohiro Aota (diff) | |
download | gentoo-2-272fee62edf2d2bb2b7abde2b95ba23715944fc4.tar.gz gentoo-2-272fee62edf2d2bb2b7abde2b95ba23715944fc4.tar.bz2 gentoo-2-272fee62edf2d2bb2b7abde2b95ba23715944fc4.zip |
Fix paths to commands in src_test() (bug #415719). Patch by Arfrever. Backported from Progress Overlay.
(Portage version: 2.2.0_alpha107/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/boost')
-rw-r--r-- | dev-libs/boost/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/boost/boost-1.48.0-r2.ebuild | 6 | ||||
-rw-r--r-- | dev-libs/boost/boost-1.49.0-r1.ebuild | 6 |
3 files changed, 12 insertions, 7 deletions
diff --git a/dev-libs/boost/ChangeLog b/dev-libs/boost/ChangeLog index dc632173d8f5..19314a055b14 100644 --- a/dev-libs/boost/ChangeLog +++ b/dev-libs/boost/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/boost # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.244 2012/05/16 15:40:36 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.245 2012/05/20 21:16:58 floppym Exp $ + + 20 May 2012; Mike Gilbert <floppym@gentoo.org> boost-1.48.0-r2.ebuild, + boost-1.49.0-r1.ebuild: + Fix paths to commands in src_test() (bug #415719). Patch by Arfrever. + Backported from Progress Overlay. 16 May 2012; Jeroen Roovers <jer@gentoo.org> boost-1.48.0-r2.ebuild: Stable for HPPA (bug #413815). diff --git a/dev-libs/boost/boost-1.48.0-r2.ebuild b/dev-libs/boost/boost-1.48.0-r2.ebuild index 16104b088370..3a4e28e811d1 100644 --- a/dev-libs/boost/boost-1.48.0-r2.ebuild +++ b/dev-libs/boost/boost-1.48.0-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.48.0-r2.ebuild,v 1.2 2012/05/16 15:40:36 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.48.0-r2.ebuild,v 1.3 2012/05/20 21:16:58 floppym Exp $ EAPI="4" PYTHON_DEPEND="python? *" @@ -569,7 +569,7 @@ src_test() { --dump-tests 2>&1 | tee regress.log || die # Postprocessing - cat regress.log | ../tools/regression/build/bin/gcc-$(gcc-version)/gentoorelease/pch-off/process_jam_log --v2 + cat regress.log | "$(find ../tools/regression/build/bin/gcc-$(gcc-version)/gentoorelease -name process_jam_log)" --v2 if test $? != 0; then die "Postprocessing the build log failed" fi @@ -579,7 +579,7 @@ src_test() { __EOF__ # Generate the build log html summary page - ../tools/regression/build/bin/gcc-$(gcc-version)/gentoorelease/pch-off/compiler_status --v2 \ + "$(find ../tools/regression/build/bin/gcc-$(gcc-version)/gentoorelease -name compiler_status)" --v2 \ --comment comment.html "${S}" \ cs-$(uname).html cs-$(uname)-links.html if test $? != 0; then diff --git a/dev-libs/boost/boost-1.49.0-r1.ebuild b/dev-libs/boost/boost-1.49.0-r1.ebuild index 88ac431f60ab..6d941db08f30 100644 --- a/dev-libs/boost/boost-1.49.0-r1.ebuild +++ b/dev-libs/boost/boost-1.49.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.49.0-r1.ebuild,v 1.1 2012/05/06 16:22:14 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.49.0-r1.ebuild,v 1.2 2012/05/20 21:16:58 floppym Exp $ EAPI="4" PYTHON_DEPEND="python? *" @@ -568,7 +568,7 @@ src_test() { --dump-tests 2>&1 | tee regress.log || die # Postprocessing - cat regress.log | ../tools/regression/build/bin/gcc-$(gcc-version)/gentoorelease/pch-off/process_jam_log --v2 + cat regress.log | "$(find ../tools/regression/build/bin/gcc-$(gcc-version)/gentoorelease -name process_jam_log)" --v2 if test $? != 0; then die "Postprocessing the build log failed" fi @@ -578,7 +578,7 @@ src_test() { __EOF__ # Generate the build log html summary page - ../tools/regression/build/bin/gcc-$(gcc-version)/gentoorelease/pch-off/compiler_status --v2 \ + "$(find ../tools/regression/build/bin/gcc-$(gcc-version)/gentoorelease -name compiler_status)" --v2 \ --comment comment.html "${S}" \ cs-$(uname).html cs-$(uname)-links.html if test $? != 0; then |