summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-21 16:46:31 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-21 16:46:31 +0000
commit2f3c36c494bb9da21cec5c66582d1c20860e87ca (patch)
treef5e6201f8d40e8f5ab9bf8aefd4f50f883332d58 /configure
parentcb10c90e194355adf9f48498bf288ff637f79aec (diff)
downloadmpv-2f3c36c494bb9da21cec5c66582d1c20860e87ca.tar.bz2
mpv-2f3c36c494bb9da21cec5c66582d1c20860e87ca.tar.xz
Remove stray -I from include dirs in live555 check, it was being duplicated.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21143 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure b/configure
index 0e1e4ed8ed..85170b43b2 100755
--- a/configure
+++ b/configure
@@ -5977,7 +5977,9 @@ EOF
_live=no
for I in $_inc_extra "-I$_libdir/live" "-I/usr/lib/live" "-I/usr/local/live" "-I/usr/local/lib/live" ; do
- cxx_check $I/liveMedia/include $I/UsageEnvironment/include $I/groupsock/include && _livelibdir=$I && _live=yes && break
+ cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
+ $I/groupsock/include && _livelibdir=`echo $I| sed s/-I//` && \
+ _live=yes && break
done
if test "$_live" != yes ; then
if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock; then