dovecot: Use sed instead of $(SED). sed should work everywhere a...

dovecot at dovecot.org dovecot at dovecot.org
Wed Aug 22 16:24:34 EEST 2007


details:   http://hg.dovecot.org/dovecot/rev/b44b090d7c07
changeset: 6308:b44b090d7c07
user:      Timo Sirainen <tss at iki.fi>
date:      Wed Aug 22 16:24:30 2007 +0300
description:
Use sed instead of $(SED). sed should work everywhere anyway, and $(SED)
for some reason doesn't work everywhere.

diffstat:

1 file changed, 1 insertion(+), 1 deletion(-)
src/plugins/quota/Makefile.am |    2 +-

diffs (12 lines):

diff -r 941c435e18c9 -r b44b090d7c07 src/plugins/quota/Makefile.am
--- a/src/plugins/quota/Makefile.am	Wed Aug 22 16:12:57 2007 +0300
+++ b/src/plugins/quota/Makefile.am	Wed Aug 22 16:24:30 2007 +0300
@@ -32,7 +32,7 @@ if HAVE_RQUOTA
 
 rquota_xdr.c: Makefile
 	$(RPCGEN) -c /usr/include/rpcsvc/rquota.x | \
-	  $(SED) -e 's/IXDR_PUT/(void)IXDR_PUT/g' \
+	  sed -e 's/IXDR_PUT/(void)IXDR_PUT/g' \
 	    -e 's/int32_t \*buf/int32_t *buf __attr_unused__/' > rquota_xdr.c
 endif
 


More information about the dovecot-cvs mailing list