Mercurial > mplayer.hg
changeset 21127:15c27b17476c
Remove stray -I from include dirs in live555 check, it was being duplicated.
author | diego |
---|---|
date | Tue, 21 Nov 2006 16:46:31 +0000 |
parents | 83dc11e40f28 |
children | ef9e23c5ef5b |
files | configure |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Tue Nov 21 16:27:05 2006 +0000 +++ b/configure Tue Nov 21 16:46:31 2006 +0000 @@ -5977,7 +5977,9 @@ _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