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 5DD90138334 for ; Sat, 7 Sep 2019 08:22:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A3B5BE0A98; Sat, 7 Sep 2019 08:22:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 88974E0A98 for ; Sat, 7 Sep 2019 08:22:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 4EF3534ADB6 for ; Sat, 7 Sep 2019 08:22:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 261174D3 for ; Sat, 7 Sep 2019 08:22:16 +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: <1567844476.dedcf28c4c922d9c724339e83896f54df59796e2.slyfox@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: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: dedcf28c4c922d9c724339e83896f54df59796e2 X-VCS-Branch: master Date: Sat, 7 Sep 2019 08:22:16 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9794883c-4ad6-4989-b7f6-5e8ac0815983 X-Archives-Hash: 0cbbbece30d799b09dd62b54dfc09f59 commit: dedcf28c4c922d9c724339e83896f54df59796e2 Author: Sergei Trofimovich gentoo org> AuthorDate: Sat Sep 7 08:21:16 2019 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sat Sep 7 08:21:16 2019 +0000 URL: https://gitweb.gentoo.org/proj/gcc-config.git/commit/?id=dedcf28c gcc-config: avoid false-positive detection of 'sed' use Noticed when ran 'make check': * Running source/test.sed ... due to log difference; see tests/source/test.sed.log [ !! ] Signed-off-by: Sergei Trofimovich gentoo.org> gcc-config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc-config b/gcc-config index 21d54c1..aefdbc4 100755 --- a/gcc-config +++ b/gcc-config @@ -28,7 +28,7 @@ has() { [[ " ${*:2} " == *" $1 "* ]]; } die() { eerror "${argv0}: $*"; exit 1; } umask 022 -# *BSD sed does not work as-is, use GNU sed. TODO: find details. +# *BSD SED does not work as-is, use GNU SED. TODO: find details. SED=$(type -P gsed) : ${SED:=$(type -P sed)}