diff options
author | heinz <heinz> | 2006-03-24 19:46:10 +0000 |
---|---|---|
committer | heinz <heinz> | 2006-03-24 19:46:10 +0000 |
commit | 0014ec325ce42c861f2f6449bfdeb5fcfdbbb6c4 (patch) | |
tree | 7e9b52cd4680013a4aa7b4049ecebc853a151d44 /mail/spamassassin/patches | |
parent | ea3d942005038b7e6f296ea3d5913cb0b0cd4df7 (diff) | |
download | pkgsrc-0014ec325ce42c861f2f6449bfdeb5fcfdbbb6c4.tar.gz |
Fixed one forgotten case of variable with underscore. This fixes PR
pkg/33139 by Ben Colver.
Diffstat (limited to 'mail/spamassassin/patches')
-rw-r--r-- | mail/spamassassin/patches/patch-ad | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/mail/spamassassin/patches/patch-ad b/mail/spamassassin/patches/patch-ad index 1d57988c49e..78950dcd2f7 100644 --- a/mail/spamassassin/patches/patch-ad +++ b/mail/spamassassin/patches/patch-ad @@ -1,4 +1,4 @@ -$NetBSD: patch-ad,v 1.8 2006/03/13 21:11:57 heinz Exp $ +$NetBSD: patch-ad,v 1.9 2006/03/24 19:46:10 heinz Exp $ --- spamd/netbsd-rc-script.sh.orig 2006-03-10 20:30:23.000000000 +0100 +++ spamd/netbsd-rc-script.sh @@ -31,13 +31,11 @@ $NetBSD: patch-ad,v 1.8 2006/03/13 21:11:57 heinz Exp $ -# A default limit of 64 (at least on NetBSD) may be too low for many +# A default limit of 64 on NetBSD may be too low for many # people (eg with addional RBL rules) -@@ -98,4 +104,4 @@ spamd_reload() +@@ -98,3 +104,3 @@ spamd_reload() -if [ "${OPSYS}" = "NetBSD" ]; then -- if checkyesno INTERPRETER_SUPPORT; then +if [ "${OPSYS}" = "NetBSD" -o "${OPSYS}" = "DragonFly" ]; then -+ if checkyesno _INTERPRETER_SUPPORT; then - : # support for 'command_interpreter' was added in NetBSD 1.6 + if checkyesno INTERPRETER_SUPPORT; then @@ -112,3 +118,3 @@ if [ "${OPSYS}" = "NetBSD" ]; then -else # not NetBSD |