diff options
author | bapt <bapt@FreeBSD.org> | 2013-06-27 14:48:43 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-06-27 14:48:43 +0800 |
commit | c511b27f7e80514e5cd37324c5f85fafa340365e (patch) | |
tree | c3c72caeb1be0f53559dd07bae2f22fd8daab64b /mail/squirrelmail-askuserinfo-plugin | |
parent | 87551df8a76d7e97b1fb4de019c30e6437261be6 (diff) | |
download | freebsd-ports-gnome-c511b27f7e80514e5cd37324c5f85fafa340365e.tar.gz freebsd-ports-gnome-c511b27f7e80514e5cd37324c5f85fafa340365e.tar.zst freebsd-ports-gnome-c511b27f7e80514e5cd37324c5f85fafa340365e.zip |
CATEGORIES is defined in bsd.squirrelmail.mk which is always loaded after .mk inclusion leading to PKGORIGIN not being set when needed.
Nothing requires bsd.squirrelmail to be loaded after bsd.port.pre.mk but the PORTDIR.
Convert "${PORTDIR}/mail" to ${.CURDIR}/.. and remove all the pre.mk/post.mk dancine
Reported by: erwin
Diffstat (limited to 'mail/squirrelmail-askuserinfo-plugin')
-rw-r--r-- | mail/squirrelmail-askuserinfo-plugin/Makefile | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/mail/squirrelmail-askuserinfo-plugin/Makefile b/mail/squirrelmail-askuserinfo-plugin/Makefile index d0c4401b032f..f2d7dcf4ddc4 100644 --- a/mail/squirrelmail-askuserinfo-plugin/Makefile +++ b/mail/squirrelmail-askuserinfo-plugin/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: squirrelmail-askuserinfo-plugin -# Date created: 2010-05-25 -# Whom: Thomas Abthorpe <tabthorpe@FreeBSD.org> -# +# Created by: Thomas Abthorpe <tabthorpe@FreeBSD.org> # $FreeBSD$ -# PORTNAME= askuserinfo PORTVERSION= 1.1 @@ -13,6 +9,5 @@ DIST_SUBDIR= squirrelmail MAINTAINER= tabthorpe@FreeBSD.org COMMENT= Ask user to enter Full name and Email address at initial logon -.include <bsd.port.pre.mk> -.include "${PORTSDIR}/mail/squirrelmail/bsd.squirrelmail.mk" -.include <bsd.port.post.mk> +.include "${.CURDIR}/../squirrelmail/bsd.squirrelmail.mk" +.include <bsd.port.mk> |