diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2018-05-12 19:41:29 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2018-05-12 19:44:21 +0100 |
commit | 0ab0a9c9d3005a7a0415e30c6ee379fc25485090 (patch) | |
tree | 026cebc3a88c9a6d230ce59f08303f8f57a5c236 /sys-devel/binutils/binutils-9999.ebuild | |
parent | dev-python/inflect: Make tests verbose (diff) | |
download | gentoo-0ab0a9c9d3005a7a0415e30c6ee379fc25485090.tar.gz gentoo-0ab0a9c9d3005a7a0415e30c6ee379fc25485090.tar.bz2 gentoo-0ab0a9c9d3005a7a0415e30c6ee379fc25485090.zip |
sys-devel/binutils: don't purge environment for binutils-config
Follow toolchain.eclass cleanup where gcc-config was broken due
to missing PATH= assignment:
https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6526608cbdb8202bc69aaaedd19f773ef651862c
This change removes environment cleansing for binutils-config
Reported-by: hiyuh
Bug: https://bugs.gentoo.org/588642
Package-Manager: Portage-2.3.36, Repoman-2.3.9
Diffstat (limited to 'sys-devel/binutils/binutils-9999.ebuild')
-rw-r--r-- | sys-devel/binutils/binutils-9999.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-devel/binutils/binutils-9999.ebuild b/sys-devel/binutils/binutils-9999.ebuild index bab46c55f2ea..d7ba7c31aa75 100644 --- a/sys-devel/binutils/binutils-9999.ebuild +++ b/sys-devel/binutils/binutils-9999.ebuild @@ -375,7 +375,7 @@ pkg_postrm() { choice=${choice//$'\n'/ } choice=${choice/* } if [[ -z ${choice} ]] ; then - env -i ROOT="${ROOT}" binutils-config -u ${CTARGET} + binutils-config -u ${CTARGET} else binutils-config ${choice} fi |