diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2012-06-19 09:06:40 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2012-06-19 09:06:40 +0000 |
commit | 5a49afb876baef20dfac254fe9a7a366e17e967b (patch) | |
tree | 5a08f9b2932165a4cfd00948d9a6bfa7fa04e4e8 /eclass/gnustep-base.eclass | |
parent | marked x86 per bug 419083 (diff) | |
download | historical-5a49afb876baef20dfac254fe9a7a366e17e967b.tar.gz historical-5a49afb876baef20dfac254fe9a7a366e17e967b.tar.bz2 historical-5a49afb876baef20dfac254fe9a7a366e17e967b.zip |
Revert to built_with_use for correct libobjc detection and EAPI 0 ebuilds support
Diffstat (limited to 'eclass/gnustep-base.eclass')
-rw-r--r-- | eclass/gnustep-base.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/gnustep-base.eclass b/eclass/gnustep-base.eclass index 0443ace1c942..a6b8e2d3dc24 100644 --- a/eclass/gnustep-base.eclass +++ b/eclass/gnustep-base.eclass @@ -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/eclass/gnustep-base.eclass,v 1.25 2012/05/29 08:05:05 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep-base.eclass,v 1.26 2012/06/19 09:06:40 voyageur Exp $ # @ECLASS: gnustep-base.eclass # @MAINTAINER: @@ -157,7 +157,8 @@ egnustep_env() { && GS_ENV=( "${GS_ENV[@]}" "debug=yes" ) \ || GS_ENV=( "${GS_ENV[@]}" "debug=no" ) - if grep -q libobjc.so.4 "${GS_MAKEFILES}"/config.make; + # About 20 gnustep packages still use EAPI 0 + if built_with_use gnustep-base/gnustep-make libobjc2; then # Set clang for packages that do not respect gnustep-make # settings (gnustep-base's configure for example) |