Date: Mon, 10 Sep 2018 13:41:13 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r479418 - head/Mk/Uses Message-ID: <201809101341.w8ADfDIA085196@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Mon Sep 10 13:41:13 2018 New Revision: 479418 URL: https://svnweb.freebsd.org/changeset/ports/479418 Log: Rename variable so it does not clash with sanity checks. Modified: head/Mk/Uses/apache.mk Modified: head/Mk/Uses/apache.mk ============================================================================== --- head/Mk/Uses/apache.mk Mon Sep 10 13:41:02 2018 (r479417) +++ head/Mk/Uses/apache.mk Mon Sep 10 13:41:13 2018 (r479418) @@ -299,9 +299,9 @@ APACHEMODDIR= libexec/apache${APACHE_VERSION:S/.//} APACHEINCLUDEDIR= include/apache${APACHE_VERSION:S/.//} APACHEETCDIR= etc/apache${APACHE_VERSION:S/.//} .if ${APACHE_VERSION} == 2.5 -APACHE_PORT?= www/apache${APACHE_VERSION:S/.//}-devel +_APACHE_PORT?= www/apache${APACHE_VERSION:S/.//}-devel .else -APACHE_PORT?= www/apache${APACHE_VERSION:S/.//} +_APACHE_PORT?= www/apache${APACHE_VERSION:S/.//} .endif PLIST_SUB+= APACHEMODDIR="${APACHEMODDIR}" \ @@ -320,11 +320,11 @@ PKGNAMEPREFIX?= ${APACHE_PKGNAMEPREFIX} .endif .if defined(_APACHE_BUILD_DEP) -BUILD_DEPENDS+= ${APXS}:${APACHE_PORT} +BUILD_DEPENDS+= ${APXS}:${_APACHE_PORT} .endif .if defined(_APACHE_RUN_DEP) -RUN_DEPENDS+= ${APXS}:${APACHE_PORT} +RUN_DEPENDS+= ${APXS}:${_APACHE_PORT} .endif PLIST_SUB+= AP_NAME="${SHORTMODNAME}"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809101341.w8ADfDIA085196>