From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 010D713823D for ; Wed, 2 Jan 2013 03:52:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6EDCF21C003; Wed, 2 Jan 2013 03:52:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 872F221C003 for ; Wed, 2 Jan 2013 03:52:47 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9AF8E33D937 for ; Wed, 2 Jan 2013 03:52:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 640FDE5439 for ; Wed, 2 Jan 2013 03:52:44 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1357098717.b4640899a944245441860c09849c147c65518e1c.vapier@gentoo> Subject: [gentoo-commits] proj/gcc-config:master commit in: / X-VCS-Repository: proj/gcc-config X-VCS-Files: gcc-config X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: b4640899a944245441860c09849c147c65518e1c X-VCS-Branch: master Date: Wed, 2 Jan 2013 03:52:44 +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: fa7ec9ef-c0d3-4a0b-80eb-52c16a70d18c X-Archives-Hash: a612717ad81eaca57827511878cd0e57 commit: b4640899a944245441860c09849c147c65518e1c Author: Mike Frysinger gentoo org> AuthorDate: Wed Jan 2 03:51:57 2013 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Jan 2 03:51:57 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gcc-config.git;a=commit;h=b4640899 gcc-config: drop Solaris special casing with /lib/cpp When we added this logic, Gentoo/prefix wasn't a standard setup. Now that we do have Gentoo/prefix, there's no reason to special case Solaris as this path won't be an issue (as prefix systems don't write to /lib/). If someone really cares about using portage in a non-prefix setup, we can talk about how best to support things then. But this issue isn't Solaris specific, so we shouldn't have that tuple hardcoded. URL: http://bugs.gentoo.org/79964 Reported-by: Fabian Groffen gentoo.org> Signed-off-by: Mike Frysinger gentoo.org> --- gcc-config | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/gcc-config b/gcc-config index a9128d5..b11a98f 100755 --- a/gcc-config +++ b/gcc-config @@ -270,7 +270,6 @@ update_wrappers() { rm -f "${ROOT}usr/bin/${CTARGET}-cc" "${ROOT}usr/bin"/{${CTARGET}-,}g{cc,++}{32,64} # install the canonical cpp wrapper - [[ ${CTARGET} == *-solaris* ]] && return 0 if ! is_cross_compiler ; then atomic_cp "${wrapper}" "${ROOT}lib" "cpp" "${ROOT}usr/bin/cpp" fi