commit: 0f5332fd4238765abe37647e70e9adaa09887574
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 5 23:23:55 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri Jan 5 23:23:55 2018 +0000
URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=0f5332fd
crossdev: uninstall gcov-{dump,tool} gprof, bug #643162
What hanetzer writes:
"""
These files are left behind after using `crossdev -C ${CHOST}` and should be
cleaned. the files are copies of /usr/$libdir/misc/gcc-config and should be
safe to delete.
"""
Closes: https://bugs.gentoo.org/643162
Fixed-by: hanetzer <AT> startmail.com
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
crossdev | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/crossdev b/crossdev
index d661c86..92b7acf 100755
--- a/crossdev
+++ b/crossdev
@@ -501,8 +501,8 @@ uninstall() {
# clean out known toolchain files (binutils/gcc)
for f in \
addr2line ar as c++filt dlltool dllwrap dwp embedspu \
- gcc-{ar,nm,ranlib} gccbug gprof ld nm objcopy objdump \
- ranlib readelf size strings strip windmc windres
+ gcc-{ar,nm,ranlib} gccbug gcov-{dump,tool} gprof ld nm \
+ objcopy objdump ranlib readelf size strings strip windmc windres
do
rm -f "${EPREFIX}"/usr/bin/${CTARGET}-${f}
"${EPREFIX}"/usr/${CTARGET}/bin/${f}
done