Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2017-05-19 13:01:43 +0300
committerClément Bœsch <u@pkh.me>2017-05-19 13:01:43 +0300
commit55b56a8d6a061db7dff730341f062086f65d4bd4 (patch)
treeb87176264640469690b36b278574b699c5b5ccff /configure
parentc909b77fe3646d5891458b6af137667dfbf15eb8 (diff)
parentf96d07f4ec4193fb5293d7ac8f1324aac3c3ea07 (diff)
Merge commit 'f96d07f4ec4193fb5293d7ac8f1324aac3c3ea07'
* commit 'f96d07f4ec4193fb5293d7ac8f1324aac3c3ea07': configure: Add quotes around a variable which might be empty Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 2a3a767254..db5cdf2ef0 100755
--- a/configure
+++ b/configure
@@ -6395,7 +6395,7 @@ fi
for pfx in "" host_; do
varname=${pfx%_}cc_type
eval "type=\$$varname"
- if [ $type = "msvc" ]; then
+ if [ "$type" = "msvc" ]; then
check_${pfx}cc <<EOF || add_${pfx}cflags -Dinline=__inline
static inline int foo(int a) { return a; }
EOF