You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by fe...@apache.org on 2004/01/20 21:29:19 UTC

svn commit: rev 6237 - incubator/spamassassin/branches/b2_6_0/lib/Mail

Author: felicity
Date: Tue Jan 20 12:29:16 2004
New Revision: 6237

Modified:
   incubator/spamassassin/branches/b2_6_0/lib/Mail/SpamAssassin.pm
Log:
bug 2938: when preparing the 2.62 release, the extra_version code got
modified to use array subscripts which isn't supported in perl 5.005,
therefore breaking the whole release on the 5.0 series.  this patch
changes extra_version to simply be "svn" for devel versions.


Modified: incubator/spamassassin/branches/b2_6_0/lib/Mail/SpamAssassin.pm
==============================================================================
--- incubator/spamassassin/branches/b2_6_0/lib/Mail/SpamAssassin.pm	(original)
+++ incubator/spamassassin/branches/b2_6_0/lib/Mail/SpamAssassin.pm	Tue Jan 20 12:29:16 2004
@@ -97,7 +97,7 @@
 # "mss<number>", <number> increasing with every hack.
 @EXTRA_VERSION = qw();
 if (defined $IS_DEVEL_BUILD && $IS_DEVEL_BUILD) {
-  push(@EXTRA_VERSION, ( 'r' . qw{$LastChangedRevision: 6141 $ updated by SVN}[1] ));
+  push(@EXTRA_VERSION, "svn");
 }
 
 sub Version { join('-', $VERSION, @EXTRA_VERSION) }