Fix quotes around compiler args in C11 check
authorMartin Kroeker <martin@ruby.chemie.uni-freiburg.de>
Wed, 8 Jun 2022 09:22:20 +0000 (11:22 +0200)
committerGitHub <noreply@github.com>
Wed, 8 Jun 2022 09:22:20 +0000 (11:22 +0200)
c_check

diff --git a/c_check b/c_check
index 48fd14e..d825017 100755 (executable)
--- a/c_check
+++ b/c_check
@@ -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