From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 60E0E1382C5 for ; Fri, 5 Jan 2018 23:27:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 89E8DE0825; Fri, 5 Jan 2018 23:27:05 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 407C1E0825 for ; Fri, 5 Jan 2018 23:27:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4A251335C42 for ; Fri, 5 Jan 2018 23:27:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F7E6145 for ; Fri, 5 Jan 2018 23:27:01 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1515194635.0f5332fd4238765abe37647e70e9adaa09887574.slyfox@gentoo> Subject: [gentoo-commits] proj/crossdev:master commit in: / X-VCS-Repository: proj/crossdev X-VCS-Files: crossdev X-VCS-Directories: / X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 0f5332fd4238765abe37647e70e9adaa09887574 X-VCS-Branch: master Date: Fri, 5 Jan 2018 23:27:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 54e90cee-cd63-430c-8bd2-e7c5bd370a4b X-Archives-Hash: fd1a37a72467f5f32daf86e48a4fa330 commit: 0f5332fd4238765abe37647e70e9adaa09887574 Author: Sergei Trofimovich gentoo org> AuthorDate: Fri Jan 5 23:23:55 2018 +0000 Commit: Sergei Trofimovich gentoo 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 startmail.com Signed-off-by: Sergei Trofimovich 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