[FFmpeg-cvslog] Merge commit 'f96d07f4ec4193fb5293d7ac8f1324aac3c3ea07'
Clément Bœsch
git at videolan.org
Fri May 19 13:01:58 EEST 2017
ffmpeg | branch: master | Clément Bœsch <u at pkh.me> | Fri May 19 12:01:43 2017 +0200| [55b56a8d6a061db7dff730341f062086f65d4bd4] | committer: Clément Bœsch
Merge commit 'f96d07f4ec4193fb5293d7ac8f1324aac3c3ea07'
* commit 'f96d07f4ec4193fb5293d7ac8f1324aac3c3ea07':
configure: Add quotes around a variable which might be empty
Merged-by: Clément Bœsch <u at pkh.me>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=55b56a8d6a061db7dff730341f062086f65d4bd4
---
configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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
======================================================================
More information about the ffmpeg-cvslog
mailing list