diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2019-09-07 09:21:16 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2019-09-07 09:21:16 +0100 |
commit | dedcf28c4c922d9c724339e83896f54df59796e2 (patch) | |
tree | b937908730a4d7420b769ccf47e225fcda1e250f /gcc-config | |
parent | gcc-config: drop /etc/env.d/gcc/config migration code (diff) | |
download | gcc-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>
Diffstat (limited to 'gcc-config')
-rwxr-xr-x | gcc-config | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)} |