Browse Source

Fix clang sysroot flag

Older versions accepted both with and without an '=', but newer versions
require the '=' to be omitted

Originally committed as revision 22274 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
David Conrad 15 years ago
parent
commit
4def700e9e
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      configure

+ 2
- 2
configure View File

@@ -1862,8 +1862,8 @@ if test -n "$sysroot"; then
add_ldflags --sysroot="$sysroot" add_ldflags --sysroot="$sysroot"
;; ;;
clang) clang)
add_cppflags -isysroot="$sysroot"
add_ldflags -isysroot="$sysroot"
add_cppflags -isysroot "$sysroot"
add_ldflags -isysroot "$sysroot"
;; ;;
esac esac
fi fi


Loading…
Cancel
Save