mirror of https://github.com/mpv-player/mpv
Fix _inc_extra handling in DirectFB check.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17293 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
465d9a7f2a
commit
821a7e8785
|
@ -3521,7 +3521,7 @@ echores "$_tga"
|
||||||
|
|
||||||
echocheck "DirectFB headers presence"
|
echocheck "DirectFB headers presence"
|
||||||
if test -z "$_inc_directfb" ; then
|
if test -z "$_inc_directfb" ; then
|
||||||
for I in /usr/include /usr/local/include $_inc_extra; do
|
for I in /usr/include /usr/local/include `echo $_inc_extra | sed s/-I//g`; do
|
||||||
if test -d "$I/directfb" && test -f "$I/directfb/directfb.h" ; then
|
if test -d "$I/directfb" && test -f "$I/directfb/directfb.h" ; then
|
||||||
_inc_directfb="-I$I/directfb"
|
_inc_directfb="-I$I/directfb"
|
||||||
echores "yes (using $_inc_directfb)"
|
echores "yes (using $_inc_directfb)"
|
||||||
|
|
Loading…
Reference in New Issue