From: Joel Rosdahl Date: Mon, 8 Jun 2020 19:51:32 +0000 (+0200) Subject: portability: Don’t pass “-r” to sed X-Git-Tag: v4.0~414 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5b8b4a38d715edc2420725e10e6e09b55f98c9e6;p=thirdparty%2Fccache.git portability: Don’t pass “-r” to sed --- diff --git a/test/run b/test/run index 2bb03e650..1892f42af 100755 --- a/test/run +++ b/test/run @@ -387,7 +387,7 @@ case $compiler_version in ;; *clang*) COMPILER_TYPE_CLANG=true - CLANG_VERSION_SUFFIX=$(echo $COMPILER | sed -r 's/.*clang//') + CLANG_VERSION_SUFFIX=$(echo $COMPILER | sed 's/.*clang//') ;; *) echo "WARNING: Compiler $COMPILER not supported (version: $compiler_version) -- not running tests" >&2