diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2005-03-09 17:07:06 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2005-03-09 17:07:06 +0000 |
commit | f206e3385b3a6caa818b53e97c300443501ce2d4 (patch) | |
tree | 3be0bb8249448f46dfaa1a095c620c638690881e /eclass | |
parent | repoman: Trim trailing whitespace (diff) | |
download | gentoo-2-f206e3385b3a6caa818b53e97c300443501ce2d4.tar.gz gentoo-2-f206e3385b3a6caa818b53e97c300443501ce2d4.tar.bz2 gentoo-2-f206e3385b3a6caa818b53e97c300443501ce2d4.zip |
Now add it to EXPORT_FUNCTIONS, and make sure the symlinks are updated if we remerge the current profile.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain-binutils.eclass | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/eclass/toolchain-binutils.eclass b/eclass/toolchain-binutils.eclass index f9113fd887e7..733471f73907 100644 --- a/eclass/toolchain-binutils.eclass +++ b/eclass/toolchain-binutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v 1.26 2005/03/09 15:25:36 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v 1.27 2005/03/09 17:07:06 azarah Exp $ # We install binutils into CTARGET-VERSION specific directories. This lets # us easily merge multiple versions for multiple targets (if we wish) and @@ -9,7 +9,7 @@ inherit eutils libtool flag-o-matic gnuconfig ECLASS=toolchain-binutils INHERITED="$INHERITED $ECLASS" -EXPORT_FUNCTIONS src_unpack src_compile src_test src_install pkg_postinst pkg_prerm +EXPORT_FUNCTIONS src_unpack src_compile src_test src_install pkg_postinst pkg_postrm export CTARGET=${CTARGET:-${CHOST}} if [[ ${CTARGET} == ${CHOST} ]] ; then @@ -219,19 +219,22 @@ toolchain-binutils_pkg_postinst() { } toolchain-binutils_pkg_postrm() { - local curr=$(env CHOST=${CTARGET} binutils-config -c) - [[ ${curr} != ${CTARGET}-${PV} ]] && return 0 - - # if user was so kind as to unmerge the version we have - # active, then switch to another version local choice=$(binutils-config -l | grep ${CTARGET} | grep -v ${CTARGET}-${PV}) choice=${choice/* } # If no other versions exist, then uninstall for this # target ... otherwise, switch to the newest version - if [[ ! -f ${BINPATH}/ld && -z ${choice} ]] ; then - binutils-config -u ${CTARGET} - elif [[ -n ${choice} ]] ; then - binutils-config ${choice} + # Note: only do this if this version is unmerged. We + # rerun binutils-config if this is a remerge, as + # we want the mtimes on the symlinks updated (if + # it is the same as the current selected profile) + if [[ ! -e ${BINPATH}/ld ]] ; then + if [[ -z ${choice} ]] ; then + binutils-config -u ${CTARGET} + else + binutils-config ${choice} + fi + elif [[ $(CHOST=${CTARGET} binutils-config -c) = ${CTARGET}-${PV} ]] ; then + binutils-config ${CTARGET}-${PV} fi } |