mirror of https://git.ffmpeg.org/ffmpeg.git
Drop unnecessary subshell invocation from BEINCLUDES check.
Originally committed as revision 12473 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
972d628a8b
commit
78fe7631f8
|
@ -1170,7 +1170,7 @@ case $targetos in
|
|||
# no need for libm, but the inet stuff
|
||||
# Check for BONE
|
||||
# XXX: actually should check for NOT net_server
|
||||
if (echo $BEINCLUDES | grep -q 'headers/be/bone'); then
|
||||
if echo $BEINCLUDES | grep -q 'headers/be/bone'; then
|
||||
network_extralibs="-lbind -lsocket"
|
||||
else
|
||||
enable beos_netserver
|
||||
|
|
Loading…
Reference in New Issue