[dovecot-cvs] dovecot configure.in,1.321,1.322

tss at dovecot.org tss at dovecot.org
Mon Feb 5 13:07:29 UTC 2007


Update of /var/lib/cvs/dovecot
In directory talvi:/tmp/cvs-serv10490

Modified Files:
	configure.in 
Log Message:
Don't use nonportable grep -q.



Index: configure.in
===================================================================
RCS file: /var/lib/cvs/dovecot/configure.in,v
retrieving revision 1.321
retrieving revision 1.322
diff -u -d -r1.321 -r1.322
--- configure.in	18 Jan 2007 19:51:18 -0000	1.321
+++ configure.in	5 Feb 2007 13:07:26 -0000	1.322
@@ -1480,7 +1480,7 @@
 		# we have a kludgy check here to check that we have
 		# version >= v1.3. Although this doesn't work right with
 		# non-MIT kerberos versioning..
-		if `krb5-config --version|grep -qv '1\.2'`; then
+		if `krb5-config --version|grep -v '1\.2' > /dev/null`; then
 			AUTH_LIBS="$AUTH_LIBS `krb5-config --libs gssapi`"
 			AUTH_CFLAGS="$AUTH_CFLAGS `krb5-config --cflags gssapi`"
 			



More information about the dovecot-cvs mailing list