mirror of
https://github.com/mpv-player/mpv
synced 2024-12-16 03:45:23 +00:00
Fix passing CFLAGS and LDFLAGS with = in them as configure parameters.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29138 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
b901ebc9a0
commit
389853416f
4
configure
vendored
4
configure
vendored
@ -797,10 +797,10 @@ for ac_option do
|
||||
;;
|
||||
|
||||
--extra-cflags=*)
|
||||
extra_cflags=`echo $ac_option | cut -d '=' -f 2`
|
||||
extra_cflags=`echo $ac_option | cut -d '=' -f 2-`
|
||||
;;
|
||||
--extra-ldflags=*)
|
||||
extra_ldflags=`echo $ac_option | cut -d '=' -f 2`
|
||||
extra_ldflags=`echo $ac_option | cut -d '=' -f 2-`
|
||||
;;
|
||||
--extra-libs=*)
|
||||
extra_libs=`echo $ac_option | cut -d '=' -f 2`
|
||||
|
Loading…
Reference in New Issue
Block a user