mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
--extra-cflags and --extra-ldflags clobbers previous options. This
patch will add instead of clobber. patch by (Roine Gustafsson <roine users.sourceforge net) Originally committed as revision 3807 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
503a47255f
commit
f4e2c4b134
4
configure
vendored
4
configure
vendored
@ -370,9 +370,9 @@ for opt do
|
||||
;;
|
||||
--make=*) make=`echo $opt | cut -d '=' -f 2`
|
||||
;;
|
||||
--extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
|
||||
--extra-cflags=*) CFLAGS="$CFLAGS ${opt#--extra-cflags=}"
|
||||
;;
|
||||
--extra-ldflags=*) LDFLAGS=${opt#--extra-ldflags=}
|
||||
--extra-ldflags=*) LDFLAGS="$LDFLAGS ${opt#--extra-ldflags=}"
|
||||
;;
|
||||
--extra-libs=*) extralibs=${opt#--extra-libs=}
|
||||
;;
|
||||
|
Loading…
Reference in New Issue
Block a user