[dovecot-cvs] dovecot/src/plugins/trash Makefile.am,1.3,1.4
cras at dovecot.org
cras at dovecot.org
Sat Jun 17 21:03:55 EEST 2006
- Previous message: [dovecot-cvs] dovecot/src/plugins/quota Makefile.am,1.7,1.8
- Next message: [dovecot-cvs] dovecot/src/auth mech-anonymous.c, 1.15,
1.15.2.1 mech-apop.c, 1.20.2.1, 1.20.2.2 mech-cram-md5.c, 1.23,
1.23.2.1 mech-digest-md5.c, 1.38.2.1, 1.38.2.2 mech-login.c,
1.15.2.2, 1.15.2.3 mech-ntlm.c, 1.24.2.1,
1.24.2.2 mech-plain.c, 1.35, 1.35.2.1 mech-rpa.c, 1.24.2.1,
1.24.2.2 mech.c, 1.55, 1.55.2.1 mech.h, 1.37, 1.37.2.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/lib/cvs/dovecot/src/plugins/trash
In directory talvi:/tmp/cvs-serv17727/trash
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/trash/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- Makefile.am 14 Dec 2005 21:50:57 -0000 1.3
+++ Makefile.am 17 Jun 2006 18:03:53 -0000 1.4
@@ -16,8 +16,8 @@
trash-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/lib02_trash_plugin.so; \
$(LN_S) ../lib02_trash_plugin.so $(DESTDIR)$(moduledir)/$$d; \
done
- Previous message: [dovecot-cvs] dovecot/src/plugins/quota Makefile.am,1.7,1.8
- Next message: [dovecot-cvs] dovecot/src/auth mech-anonymous.c, 1.15,
1.15.2.1 mech-apop.c, 1.20.2.1, 1.20.2.2 mech-cram-md5.c, 1.23,
1.23.2.1 mech-digest-md5.c, 1.38.2.1, 1.38.2.2 mech-login.c,
1.15.2.2, 1.15.2.3 mech-ntlm.c, 1.24.2.1,
1.24.2.2 mech-plain.c, 1.35, 1.35.2.1 mech-rpa.c, 1.24.2.1,
1.24.2.2 mech.c, 1.55, 1.55.2.1 mech.h, 1.37, 1.37.2.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the dovecot-cvs
mailing list