diff options
author | rakuco <rakuco@FreeBSD.org> | 2016-03-05 21:32:02 +0800 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2016-03-05 21:32:02 +0800 |
commit | ba2cc0e003b2ee752c205fdadbb407b38613d905 (patch) | |
tree | bb6ad243d647837d08835011d3f2ad5b357465e3 /net-mgmt | |
parent | 31bf121af173fd4aea1ffe88f246389bf2731130 (diff) | |
download | freebsd-ports-gnome-ba2cc0e003b2ee752c205fdadbb407b38613d905.tar.gz freebsd-ports-gnome-ba2cc0e003b2ee752c205fdadbb407b38613d905.tar.zst freebsd-ports-gnome-ba2cc0e003b2ee752c205fdadbb407b38613d905.zip |
Be explicit and provide the full path to the perl binary when installing.
The default value of the PERL variable in the port's Makefile is
"/usr/bin/perl", be explicit and provide the path to the binary on FreeBSD.
PR: 197131
Submitted by: web@umich.edu
Approved by: Nick Hilliard <nick@foobar.org>
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/netdot/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net-mgmt/netdot/Makefile b/net-mgmt/netdot/Makefile index ea7d9f8ec1c8..b4d7fc5a983a 100644 --- a/net-mgmt/netdot/Makefile +++ b/net-mgmt/netdot/Makefile @@ -3,7 +3,7 @@ PORTNAME= netdot PORTVERSION= 1.0.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-mgmt MASTER_SITES= http://netdot.uoregon.edu/pub/dists/ @@ -61,6 +61,7 @@ perl2_CMD= ${LOCALBASE}/bin/perl INSTALL_TARGET= install \ PREFIX=${WWWDIR} \ + PERL=${PERL} \ STAGEDIR=${STAGEDIR}${WWWDIR} \ APACHEUSER=${WWWOWN} \ APACHEGROUP=${WWWGRP} |