------------------------------------------------------------
revno: 1141
committer: Mark Sapiro <[EMAIL PROTECTED]>
branch nick: 2.1
timestamp: Tue 2008-12-02 14:00:39 -0800
message:
As part of the Python 2.6 compatibility changes, we now use Python's email
library if it is new enough rather than installing our own in pythonlib.
However, if we are doing an upgrade, there may be an existing email library
in pythonlib which is incompatible with Python 2.6 and we need to remove it.
modified:
misc/Makefile.in
=== modified file 'misc/Makefile.in'
--- a/misc/Makefile.in 2008-11-04 02:25:20 +0000
+++ b/misc/Makefile.in 2008-12-02 22:00:39 +0000
@@ -91,6 +91,10 @@
$(INSTALL) -m $(FILEMODE) sitelist.cfg $(DESTDIR)$(DATADIR)
install-packages:
+ if [ -z "$(EMAILPKG)" -a -d $(PYTHONLIBDIR)/email ] ; \
+ then \
+ rm -rf $(PYTHONLIBDIR)/email* ; \
+ fi
for p in $(PACKAGES); \
do \
gunzip -c $(srcdir)/$$p.tar.gz | (cd $(PKGDIR) ; tar xf -); \
--
Stable, maintained release series
https://code.launchpad.net/~mailman-coders/mailman/2.1
You are receiving this branch notification because you are subscribed to it.
_______________________________________________
Mailman-checkins mailing list
[email protected]
Unsubscribe:
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org