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 3AC59138334 for ; Thu, 5 Sep 2019 06:42:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7CF64E07A7; Thu, 5 Sep 2019 06:42:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 7D6FCE07A7 for ; Thu, 5 Sep 2019 06:42:39 +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 07A1834AC59 for ; Thu, 5 Sep 2019 06:42:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DDEBD76A for ; Thu, 5 Sep 2019 06:42:35 +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: <1567665728.d698117fad62162cec3c8812b28e5848fcb07601.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: d698117fad62162cec3c8812b28e5848fcb07601 X-VCS-Branch: master Date: Thu, 5 Sep 2019 06:42:35 +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: 5ff57359-a394-4431-98b6-157320d2bc1b X-Archives-Hash: 27a46f536c5b0b80beb4e96611f0c10b commit: d698117fad62162cec3c8812b28e5848fcb07601 Author: Sergei Trofimovich gentoo org> AuthorDate: Thu Sep 5 06:42:08 2019 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Thu Sep 5 06:42:08 2019 +0000 URL: https://gitweb.gentoo.org/proj/gcc-config.git/commit/?id=d698117f gcc-config: tweak comment around 'gsed' use. Signed-off-by: Sergei Trofimovich gentoo.org> gcc-config | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gcc-config b/gcc-config index 34ff3e0..2f5c34f 100755 --- a/gcc-config +++ b/gcc-config @@ -28,9 +28,7 @@ has() { [[ " ${*:2} " == *" $1 "* ]]; } die() { eerror "${argv0}: $*"; exit 1; } umask 022 -# *BSD are plain stupid ... copy a GNU extension but don't just copy it, -# change it so it works differently. Wish Darwin did selective evolution -# on software developers. +# *BSD sed does not work as-is, use GNU sed. TODO: find details. SED=$(type -P gsed) : ${SED:=$(type -P sed)}