From 08b95db0dfb28ea9c89272252faec8c9caf65398 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Thu, 28 Dec 2000 13:53:19 +0000 Subject: [PATCH] -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 --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index db244126..79c3990e 100644 --- a/configure.in +++ b/configure.in @@ -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