Browse Source

Merge pull request #4091 from martin-frbg/ccheckfix

Fix spurious compiler error and more extraneous quotes in c_check
tags/v0.3.24
Martin Kroeker GitHub 2 years ago
parent
commit
8302aabcdb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      c_check

+ 3
- 3
c_check 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


Loading…
Cancel
Save