1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-15 04:28:09 -04:00

-q option for grep isn't known everywhere, use > /dev/null instead

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1021 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-12-28 13:53:19 +00:00 committed by cras
parent 64eed6e82b
commit 08b95db0df

View File

@ -345,7 +345,7 @@ if test "$want_perl" != "no"; then
PERL_LDFLAGS=`echo $PERL_LDFLAGS | $sedpath 's/-lnsl //'`
dnl * linux specific ..
if echo $host_os | grep -q linux; then
if echo $host_os | grep linux > /dev/null; then
PERL_LDFLAGS=`echo $PERL_LDFLAGS | $sedpath 's/-lposix //'`
fi