1
0
mirror of https://frontier.innolan.net/rainlance/amiga-ntimed.git synced 2025-11-21 01:50:30 +00:00

Portability improvements:

grep -q is non portable

avoid IP_RECVDSTADDR until we need it

Spotted by:	Ronan Flood
This commit is contained in:
Poul-Henning Kamp
2015-01-16 20:17:35 +00:00
parent 3da3e4bde3
commit 76ccc26b27
2 changed files with 1 additions and 16 deletions

2
configure vendored
View File

@ -75,7 +75,7 @@ SRCS='
udp.c
'
if make -v 2>&1 | grep -q GNU ; then
if make -v 2>&1 | grep GNU > /dev/null 2>&1 ; then
echo "make(1) is GNU make."
BSD=false
elif [ -f /usr/share/mk/bsd.prog.mk ] ; then