projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
457c08b
)
Fix clang sysroot flag
author
David Conrad
<lessen42@gmail.com>
Sun, 7 Mar 2010 03:01:36 +0000
(
03:01
+0000)
committer
David Conrad
<lessen42@gmail.com>
Sun, 7 Mar 2010 03:01:36 +0000
(
03:01
+0000)
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
configure
patch
|
blob
|
history
diff --git
a/configure
b/configure
index
9dd4489
..
7373e6a
100755
(executable)
--- a/
configure
+++ b/
configure
@@
-1862,8
+1862,8
@@
if test -n "$sysroot"; then
add_ldflags --sysroot="$sysroot"
;;
clang)
- add_cppflags -isysroot
=
"$sysroot"
- add_ldflags -isysroot
=
"$sysroot"
+ add_cppflags -isysroot
"$sysroot"
+ add_ldflags -isysroot
"$sysroot"
;;
esac
fi