aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authormax <max@FreeBSD.org>1997-06-03 02:33:30 +0800
committermax <max@FreeBSD.org>1997-06-03 02:33:30 +0800
commit3142ad1fcf5ea4e386b0a7b52f3def9cea4132aa (patch)
tree9a9c5ad569c85f8138479cf5a9fb901eb99609e9 /mail
parent104ef63cc61263ea316718d2ff7123cec505abe3 (diff)
downloadfreebsd-ports-gnome-3142ad1fcf5ea4e386b0a7b52f3def9cea4132aa.tar.gz
freebsd-ports-gnome-3142ad1fcf5ea4e386b0a7b52f3def9cea4132aa.tar.zst
freebsd-ports-gnome-3142ad1fcf5ea4e386b0a7b52f3def9cea4132aa.zip
Hardcode ${PREFIX}/bin as the directory where perl5 is instead of
dynamically set it. Suggested by: asami Instead of explicitly specifying the path in MAKE_ENV, just retrieve it from the env. var. Move the comment about MAN1 var to the front of the variable definition.
Diffstat (limited to 'mail')
-rw-r--r--mail/mailagent/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/mail/mailagent/Makefile b/mail/mailagent/Makefile
index 93843790e97b..c45cafe4e7b1 100644
--- a/mail/mailagent/Makefile
+++ b/mail/mailagent/Makefile
@@ -3,7 +3,7 @@
# Date created: 23 Sep 1996
# Whom: Masafumi NAKANE <max@FreeBSD.ORG>
#
-# $Id: Makefile,v 1.15 1997/05/24 13:17:10 jfitz Exp $
+# $Id: Makefile,v 1.16 1997/05/25 18:29:05 max Exp $
#
DISTNAME= mailagent-3.0@56
@@ -26,14 +26,14 @@ CONFIGURE_ARGS= -dres \
-Dutmp='/var/run/utmp' \
-Dprefix='${PREFIX}' -Dmansrc='${PREFIX}/man/man1' \
-Dnotifypatches='false'
-MAKE_ENV= PATH=${PERLPATH}:/bin:/sbin:/usr/bin:/usr/sbin
+MAKE_ENV= PATH=${PERLPATH}:${PATH}
INSTALL_TARGET= install install.man
-MAN1= edusers.1 mailagent.1 maildist.1 \
- maillist.1 mailpatch.1 package.1
# Note that mailhelp.1 is intentionally left uncompressed as it is referred
# from several other man pages with .so macro.
-PERLPATH!= dirname `which perl5.004`
+MAN1= edusers.1 mailagent.1 maildist.1 \
+ maillist.1 mailpatch.1 package.1
+PERLPATH?= ${PREFIX}/bin
pre-extract:
@if [ `/bin/sh -c umask` != 0022 ]; then \