[dovecot-cvs] dovecot/src/plugins/quota Makefile.am, 1.6.2.1,
1.6.2.2
cras at dovecot.org
cras at dovecot.org
Sat Jun 17 21:03:42 EEST 2006
Update of /var/lib/cvs/dovecot/src/plugins/quota
In directory talvi:/tmp/cvs-serv13082/quota
Modified Files:
Tag: branch_1_0
Makefile.am
Log Message:
mkdir_p doesn't accept multiple directories in some systems, so do it one at
a time. This also cleans up the code.
Index: Makefile.am
===================================================================
RCS file: /var/lib/cvs/dovecot/src/plugins/quota/Makefile.am,v
retrieving revision 1.6.2.1
retrieving revision 1.6.2.2
diff -u -d -r1.6.2.1 -r1.6.2.2
--- Makefile.am 11 Jun 2006 14:06:12 -0000 1.6.2.1
+++ Makefile.am 17 Jun 2006 18:03:40 -0000 1.6.2.2
@@ -28,10 +28,8 @@
quota-private.h
install-exec-local:
- $(mkdir_p) $(DESTDIR)$(moduledir)/imap \
- $(DESTDIR)$(moduledir)/pop3 \
- $(DESTDIR)$(moduledir)/lda
for d in imap pop3 lda; do \
+ $(mkdir_p) $(DESTDIR)$(moduledir)/$$d; \
rm -f $(DESTDIR)$(moduledir)/$$d/lib01_quota_plugin.so; \
$(LN_S) ../lib01_quota_plugin.so $(DESTDIR)$(moduledir)/$$d; \
done
More information about the dovecot-cvs
mailing list