diff options
author | petef <petef@FreeBSD.org> | 2002-08-11 11:05:29 +0800 |
---|---|---|
committer | petef <petef@FreeBSD.org> | 2002-08-11 11:05:29 +0800 |
commit | 95d37c4dc2ff21e1738732aabe5c9ff230f68d58 (patch) | |
tree | 361d48a460771e0d9df0a64c08d28ee7f94a5d9c /mail/p5-Mail-SpamAssassin | |
parent | 995618b35f6d8a34aa9af62ef2a6c9f433a50551 (diff) | |
download | freebsd-ports-gnome-95d37c4dc2ff21e1738732aabe5c9ff230f68d58.tar.gz freebsd-ports-gnome-95d37c4dc2ff21e1738732aabe5c9ff230f68d58.tar.zst freebsd-ports-gnome-95d37c4dc2ff21e1738732aabe5c9ff230f68d58.zip |
Unbreak this port... for some reason, ${PERL_VERSION} isn't defined when
the test takes place and that's a fatal error for make. I'm not quite sure
why it's undefined, but this will allow people to build the port for now..
Submitted by: Dan Lagille <dan@langille.org>
Noticed by: http://www.freshports.org
Diffstat (limited to 'mail/p5-Mail-SpamAssassin')
-rw-r--r-- | mail/p5-Mail-SpamAssassin/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/p5-Mail-SpamAssassin/Makefile b/mail/p5-Mail-SpamAssassin/Makefile index 8830cec35828..0bc45557ce79 100644 --- a/mail/p5-Mail-SpamAssassin/Makefile +++ b/mail/p5-Mail-SpamAssassin/Makefile @@ -22,7 +22,7 @@ RUN_DEPENDS= ${BUILD_DEPENDS} \ ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 \ ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Razor/Client.pm:${PORTSDIR}/mail/razor-agents -.if ${PERL_VERSION} != "5.8.0" +.if !defined(PERL_VERSION) || ${PERL_VERSION} != "5.8.0" RUN_DEPENDS+= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Pod/Usage.pm:${PORTSDIR}/textproc/p5-PodParser .endif |