diff options
author | heinz <heinz> | 2005-02-13 21:20:25 +0000 |
---|---|---|
committer | heinz <heinz> | 2005-02-13 21:20:25 +0000 |
commit | 5f39ab5f33e7e037b72db9ef7ccf582ae1033c0f (patch) | |
tree | a596d4ff90fd7c7b6f88db62312e3ab83f7617da /mail/spamassassin/patches | |
parent | fb80955081ba589f00d10f68ddedd474d966b4ea (diff) | |
download | pkgsrc-5f39ab5f33e7e037b72db9ef7ccf582ae1033c0f.tar.gz |
After changing the SUBST-stage to 'pre-configure' for 3.0.2, Makefile.PL was
changed after perl5-configure had been run and the Makefile created.
For some people, this resulted in a message
Makefile out-of-date with respect to Makefile.PL
at the build stage.
Omitting the first substitution (sa1) and the corresponding part of
patch-ab solved this. This patch had been unnecessary for some time
anyway.
This should resolve pkg/29255.
Diffstat (limited to 'mail/spamassassin/patches')
-rw-r--r-- | mail/spamassassin/patches/patch-ab | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/mail/spamassassin/patches/patch-ab b/mail/spamassassin/patches/patch-ab index b085b4a68e2..3890b5f857c 100644 --- a/mail/spamassassin/patches/patch-ab +++ b/mail/spamassassin/patches/patch-ab @@ -1,6 +1,6 @@ -$NetBSD: patch-ab,v 1.9 2005/01/15 21:44:55 schmonz Exp $ +$NetBSD: patch-ab,v 1.10 2005/02/13 21:20:25 heinz Exp $ ---- Makefile.PL.orig 2004-10-22 11:21:08.000000000 -0400 +--- Makefile.PL.orig Fri Oct 22 17:21:08 2004 +++ Makefile.PL @@ -64,6 +64,8 @@ my @ATT_KEYS = ( 'ENABLE_SSL', # Set to 'yes' to build spamc with SSL support. @@ -11,12 +11,9 @@ $NetBSD: patch-ab,v 1.9 2005/01/15 21:44:55 schmonz Exp $ ); -@@ -98,8 +100,10 @@ sub yesno { - my %opt = ( - 'build_spamc' => undef, +@@ -100,6 +102,8 @@ my %opt = ( 'enable_ssl' => undef, -- 'contact_address' => undef, -+ 'contact_address' => '@SA_CONTACT_ADDRESS@', + 'contact_address' => undef, 'run_net_tests' => undef, + 'run_awl_sql_tests' => undef, + 'run_bayes_sql_tests' => undef, |