Commit 75d09876 authored by diego's avatar diego

Drop unnecessary subshell invocation from BEINCLUDES check.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12473 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0557f1ae
......@@ -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
......
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