Skip to content

Commit bfd9c1b

Browse files
authored
Merge pull request #3645 from martin-frbg/issue3644
Fix quotes around compiler args in C11 check
2 parents eb1faad + 79d9832 commit bfd9c1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

c_check

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ case "$data" in
244244
tmpd=`mktemp -d`
245245
tmpf="$tmpd/a.c"
246246
printf "#include <stdatomic.h>\nint main(void){}\n" >> "$tmpf"
247-
args=' -c -o $tmpf.o $tmpf'
247+
args=" -c -o $tmpf.o $tmpf"
248248
c11_atomics=1
249249
{
250250
$compiler_name $flags $args >/dev/null 2>&1

0 commit comments

Comments
 (0)