diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2019-09-07 09:46:16 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2019-09-07 09:46:16 +0100 |
commit | e8e4dd8786f39b2d2c682f385ea2c70b2b44022f (patch) | |
tree | 2e14d54f256580a7f5e3e6682b32fe6d40a4360b /gcc-config | |
parent | gcc-config: avoid false-positive detection of 'sed' use (diff) | |
download | gcc-config-e8e4dd8786f39b2d2c682f385ea2c70b2b44022f.tar.gz gcc-config-e8e4dd8786f39b2d2c682f385ea2c70b2b44022f.tar.bz2 gcc-config-e8e4dd8786f39b2d2c682f385ea2c70b2b44022f.zip |
gcc-config: don't recreate unused '.NATIVE' symlink.
As gcc-wrapper is gone nothing should use it anymore.
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'gcc-config')
-rwxr-xr-x | gcc-config | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -656,14 +656,15 @@ switch_profile() { fi # Punt old files; maybe globs too much, but oh well + # 'NATIVE' and '.NATIVE' were used by gcc-wrapper before Aug 2018 + # and are not used as wrapper is removed. + # '.NATIVE' was created before Sept 2019. + # We clean up both for now. Should be safe to remove in 2021. rm -f \ "${GCC_ENV_D}/NATIVE" "${GCC_ENV_D}/.NATIVE" \ "${ENV_D}/05gcc" "${ENV_D}/05gcc-${CTARGET}" \ "${ENV_D}/05gcc-${CTARGET}"-* "${GCC_ENV_D}/config-${CTARGET}"-* - # Help out the gcc wrapper - ln -sf ${CC_COMP} "${GCC_ENV_D}/.NATIVE" - # Relocate random crap local x libdir pkgconfdir local mver=${CC_COMP_VERSION:0:3} |