[dovecot-cvs] dovecot/src/plugins/acl Makefile.am,1.1,1.2
cras at dovecot.org
cras at dovecot.org
Sat Jun 17 21:03:50 EEST 2006
Update of /var/lib/cvs/dovecot/src/plugins/acl
In directory talvi:/tmp/cvs-serv17727/acl
Modified Files:
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.2
diff -u -d -r1.1 -r1.2
--- Makefile.am 27 Feb 2006 16:30:39 -0000 1.1
+++ Makefile.am 17 Jun 2006 18:03:45 -0000 1.2
@@ -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