summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2019-09-07 09:21:16 +0100
committerSergei Trofimovich <slyfox@gentoo.org>2019-09-07 09:21:16 +0100
commitdedcf28c4c922d9c724339e83896f54df59796e2 (patch)
treeb937908730a4d7420b769ccf47e225fcda1e250f
parentgcc-config: drop /etc/env.d/gcc/config migration code (diff)
downloadgcc-config-dedcf28c4c922d9c724339e83896f54df59796e2.tar.gz
gcc-config-dedcf28c4c922d9c724339e83896f54df59796e2.tar.bz2
gcc-config-dedcf28c4c922d9c724339e83896f54df59796e2.zip
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 <slyfox@gentoo.org>
-rwxr-xr-xgcc-config2
1 files changed, 1 insertions, 1 deletions
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)}