Merge pull request #4091 from martin-frbg/ccheckfix

Fix spurious compiler error and more extraneous quotes in c_check
This commit is contained in:
Martin Kroeker 2023-06-19 22:49:00 +02:00 committed by GitHub
commit 8302aabcdb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -31,11 +31,11 @@ flags="$*"
cross_suffix=""
if [ "`dirname \"$compiler_name\"`" != '.' ]; then
cross_suffix="$cross_suffix`dirname \"$compiler_name\"`/"
if [ "`dirname "$compiler_name"`" != '.' ]; then
cross_suffix="$cross_suffix`dirname "$compiler_name"`/"
fi
cn= `echo $compiler_name | sed -e 's/ -.*//'`
cn=`echo $compiler_name | sed -e 's/ -.*//'`
bn=`basename "$cn"`
case "$bn" in