summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-12-28 13:53:19 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-12-28 13:53:19 +0000
commit08b95db0dfb28ea9c89272252faec8c9caf65398 (patch)
tree8f322bec4c4d40124d29293354b827dfd79e6309 /configure.in
parent64eed6e82b9027a1597b140bb1e5af09f821f9e7 (diff)
downloadirssi-08b95db0dfb28ea9c89272252faec8c9caf65398.zip
-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
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
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