Commit 55b56a8d authored by Clément Bœsch's avatar Clément Bœsch

Merge commit 'f96d07f4'

* commit 'f96d07f4':
  configure: Add quotes around a variable which might be empty
Merged-by: 's avatarClément Bœsch <u@pkh.me>
parents c909b77f f96d07f4
...@@ -6395,7 +6395,7 @@ fi ...@@ -6395,7 +6395,7 @@ fi
for pfx in "" host_; do for pfx in "" host_; do
varname=${pfx%_}cc_type varname=${pfx%_}cc_type
eval "type=\$$varname" eval "type=\$$varname"
if [ $type = "msvc" ]; then if [ "$type" = "msvc" ]; then
check_${pfx}cc <<EOF || add_${pfx}cflags -Dinline=__inline check_${pfx}cc <<EOF || add_${pfx}cflags -Dinline=__inline
static inline int foo(int a) { return a; } static inline int foo(int a) { return a; }
EOF EOF
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment