[FFmpeg-devel] [PATCH] configure: quote compiler paths
Jacob Trimble
modmaker at google.com
Wed Sep 20 02:54:16 EEST 2017
Signed-off-by: Jacob Trimble <modmaker at google.com>
---
configure | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/configure b/configure
index 2de20a02a4..16aa09be05 100755
--- a/configure
+++ b/configure
@@ -920,14 +920,14 @@ check_cc(){
log check_cc "$@"
cat > $TMPC
log_file $TMPC
- check_cmd $cc $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPC
+ check_cmd "$cc" $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPC
}
check_cxx(){
log check_cxx "$@"
cat > $TMPCPP
log_file $TMPCPP
- check_cmd $cxx $CPPFLAGS $CFLAGS $CXXFLAGS "$@" $CXX_C -o $TMPO $TMPCPP
+ check_cmd "$cxx" $CPPFLAGS $CFLAGS $CXXFLAGS "$@" $CXX_C -o $TMPO $TMPCPP
}
check_objcc(){
@@ -981,7 +981,7 @@ check_inline_asm_flags(){
void foo(void){ __asm__ volatile($code); }
EOF
log_file $TMPC
- check_cmd $cc $CPPFLAGS $CFLAGS $flags "$@" $CC_C $(cc_o $TMPO) $TMPC &&
+ check_cmd "$cc" $CPPFLAGS $CFLAGS $flags "$@" $CC_C $(cc_o $TMPO) $TMPC &&
enable $name && add_cflags $flags && add_asflags $flags && add_ldflags $flags
}
@@ -1012,7 +1012,7 @@ check_ld(){
check_$type $($cflags_filter $flags) || return
flags=$($ldflags_filter $flags)
libs=$($ldflags_filter $libs)
- check_cmd $ld $LDFLAGS $LDEXEFLAGS $flags $(ld_o $TMPE) $TMPO $libs $extralibs
+ check_cmd "$ld" $LDFLAGS $LDEXEFLAGS $flags $(ld_o $TMPE) $TMPO $libs $extralibs
}
print_include(){
@@ -4382,7 +4382,7 @@ if test "$cpu" = host; then
case "$cc_type" in
gcc|llvm_gcc)
check_native(){
- $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
+ "$cc" $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
sed -n "/cc1.*$1=/{
s/.*$1=\\([^ ]*\\).*/\\1/
p
@@ -4393,7 +4393,7 @@ if test "$cpu" = host; then
;;
clang)
check_native(){
- $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
+ "$cc" $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
sed -n "/cc1.*-target-cpu /{
s/.*-target-cpu \\([^ ]*\\).*/\\1/
p
@@ -5476,7 +5476,7 @@ elif enabled mips; then
elif enabled parisc; then
if enabled gcc; then
- case $($cc -dumpversion) in
+ case $("$cc" -dumpversion) in
4.[3-9].*) check_cflags -fno-optimize-sibling-calls ;;
esac
fi
@@ -6407,7 +6407,7 @@ if enabled icc; then
# The test above does not test linking
enabled lto && disable symver_asm_label
if enabled x86_32; then
- icc_version=$($cc -dumpversion)
+ icc_version=$("$cc" -dumpversion)
test ${icc_version%%.*} -ge 11 &&
check_cflags -falign-stack=maintain-16-byte ||
disable aligned_stack
--
2.14.1.690.gbb1197296e-goog
More information about the ffmpeg-devel
mailing list