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 A0B74139694 for ; Tue, 21 Feb 2017 02:16:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E29EBE0F45; Tue, 21 Feb 2017 02:16:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BA846E0F45 for ; Tue, 21 Feb 2017 02:16:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A9F0F340F43 for ; Tue, 21 Feb 2017 02:16:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E87D4EF6 for ; Tue, 21 Feb 2017 02:16:36 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1487642582.944439b732b303c6bcc5369fba60b8fd6f640348.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/c-client/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/c-client/c-client-2007f-r6.ebuild X-VCS-Directories: net-libs/c-client/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 944439b732b303c6bcc5369fba60b8fd6f640348 X-VCS-Branch: master Date: Tue, 21 Feb 2017 02:16:36 +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: bb08c487-4816-4abf-9698-1fa394d80284 X-Archives-Hash: df53c533fa7a87f6b81fd1e50503f7eb commit: 944439b732b303c6bcc5369fba60b8fd6f640348 Author: Michael Orlitzky gentoo org> AuthorDate: Tue Feb 21 02:03:02 2017 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Tue Feb 21 02:03:02 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=944439b7 net-libs/c-client: use ":" as pattern separator in a sed call. Most of the "sed" calls in the c-client ebuilds use ":" as the pattern separator, because we expect to be replacing things with front-slashes in them. One exception was the call that replaced CC, AR, and RANLIB; and that finally bit us. A user with absolute paths in those variables reported the defect. This commit fixes the call to use ":" as the pattern separator, like everywhere else in the ebuild. Since it is a build-only fix, it was made without a new revision. Gentoo-Bug: 609744 Package-Manager: portage-2.3.3 net-libs/c-client/c-client-2007f-r6.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/net-libs/c-client/c-client-2007f-r6.ebuild b/net-libs/c-client/c-client-2007f-r6.ebuild index fc6ce38b6a..e033b90a11 100644 --- a/net-libs/c-client/c-client-2007f-r6.ebuild +++ b/net-libs/c-client/c-client-2007f-r6.ebuild @@ -74,9 +74,9 @@ src_prepare() { # Respect LDFLAGS eapply "${FILESDIR}/${PN}-2007f-ldflags.patch" - sed -e "s/CC=cc/CC=$(tc-getCC)/" \ - -e "s/ARRC=ar/ARRC=$(tc-getAR)/" \ - -e "s/RANLIB=ranlib/RANLIB=$(tc-getRANLIB)/" \ + sed -e "s:CC=cc:CC=$(tc-getCC):" \ + -e "s:ARRC=ar:ARRC=$(tc-getAR):" \ + -e "s:RANLIB=ranlib:RANLIB=$(tc-getRANLIB):" \ -i src/osdep/unix/Makefile \ || die "failed to fix build flags support in the Makefile"