[dovecot-cvs] dovecot/src/plugins/acl Makefile.am,1.1,1.1.2.1
cras at dovecot.org
cras at dovecot.org
Sat Jun 17 21:03:41 EEST 2006
Update of /var/lib/cvs/dovecot/src/plugins/acl
In directory talvi:/tmp/cvs-serv13082/acl
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/acl/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -u -d -r1.1 -r1.1.2.1
--- Makefile.am 27 Feb 2006 16:30:39 -0000 1.1
+++ Makefile.am 17 Jun 2006 18:03:39 -0000 1.1.2.1
@@ -24,8 +24,8 @@
acl-plugin.h
install-exec-local:
- $(mkdir_p) $(DESTDIR)$(moduledir)/imap $(DESTDIR)$(moduledir)/lda
for d in imap lda; do \
+ $(mkdir_p) $(DESTDIR)$(moduledir)/$$d; \
rm -f $(DESTDIR)$(moduledir)/$$d/lib01_acl_plugin.so; \
$(LN_S) ../lib01_acl_plugin.so $(DESTDIR)$(moduledir)/$$d; \
done
More information about the dovecot-cvs
mailing list