Skip to content

Commit

Permalink
Merge pull request #4004 from martin-frbg/ccheckif
Browse files Browse the repository at this point in the history
fix missing blank in c_check
  • Loading branch information
martin-frbg authored Apr 14, 2023
2 parents 6f759a9 + 970e611 commit 4eac244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c_check
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ fi
bn=`basename \"$compiler_name\"`

case "$bn" in
*-*) if [ "$bn" != '-']; then
*-*) if [ "$bn" != '-' ]; then
cross_suffix="$cross_suffix${bn%-*}-"
fi
esac
Expand Down

0 comments on commit 4eac244

Please sign in to comment.