[dovecot-cvs] dovecot configure.in,1.277.2.56,1.277.2.57

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


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

Modified Files:
      Tag: branch_1_0
	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.277.2.56
retrieving revision 1.277.2.57
diff -u -d -r1.277.2.56 -r1.277.2.57
--- configure.in	2 Feb 2007 14:17:00 -0000	1.277.2.56
+++ configure.in	5 Feb 2007 13:07:22 -0000	1.277.2.57
@@ -1435,7 +1435,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