Merge pull request #3645 from martin-frbg/issue3644

Fix quotes around compiler args in C11 check
This commit is contained in:
Martin Kroeker 2022-06-08 19:29:07 +02:00 committed by GitHub
commit bfd9c1b58c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ case "$data" in
tmpd=`mktemp -d`
tmpf="$tmpd/a.c"
printf "#include <stdatomic.h>\nint main(void){}\n" >> "$tmpf"
args=' -c -o $tmpf.o $tmpf'
args=" -c -o $tmpf.o $tmpf"
c11_atomics=1
{
$compiler_name $flags $args >/dev/null 2>&1