summaryrefslogtreecommitdiff
path: root/mail/mailagent
diff options
context:
space:
mode:
authorMasafumi Max NAKANE <max@FreeBSD.org>1997-06-02 18:33:30 +0000
committerMasafumi Max NAKANE <max@FreeBSD.org>1997-06-02 18:33:30 +0000
commit931957769b1739898e6424d34a7a7a59ddc0b6c3 (patch)
treecd13731dab3f9d8058d0d31ec28c6b936337379c /mail/mailagent
parentUpgrade to vim-5.0j beta (diff)
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.
Notes
Notes: svn path=/head/; revision=6673
Diffstat (limited to 'mail/mailagent')
-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 \