Commit 78fe7631 authored by Diego Biurrun's avatar Diego Biurrun

Drop unnecessary subshell invocation from BEINCLUDES check.

Originally committed as revision 12473 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 972d628a
...@@ -1170,7 +1170,7 @@ case $targetos in ...@@ -1170,7 +1170,7 @@ case $targetos in
# no need for libm, but the inet stuff # no need for libm, but the inet stuff
# Check for BONE # Check for BONE
# XXX: actually should check for NOT net_server # 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" network_extralibs="-lbind -lsocket"
else else
enable beos_netserver enable beos_netserver
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment