diff options
author | Peter Wemm <peter@FreeBSD.org> | 1997-07-08 02:45:57 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 1997-07-08 02:45:57 +0000 |
commit | a22c6c11e6141f316ef146a2520cfc8a135aa91e (patch) | |
tree | bdded685abb4416b8aa959d33f038e2107a342eb /mail | |
parent | Remove bogus MASTER_SITE. (diff) |
Run scripts with /bin/sh explicitly rather than depending on the x bits
being set. I don't know what isn't copying the x bits, but don't depend
on it.
Prompted by: Andreas Klemm <andreas@klemm.gtn.com>
Diffstat (limited to 'mail')
-rw-r--r-- | mail/exmh2/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/exmh2/Makefile b/mail/exmh2/Makefile index fb9c855f097d..1f0883b0e06d 100644 --- a/mail/exmh2/Makefile +++ b/mail/exmh2/Makefile @@ -3,7 +3,7 @@ # Date released: 1 Jan 97 # Whom: Peter Wemm <peter@freebsd.org> # -# $Id: Makefile,v 1.9 1997/07/02 04:59:49 peter Exp $ +# $Id: Makefile,v 1.10 1997/07/03 05:57:39 asami Exp $ # DISTNAME= exmh-2.0delta @@ -44,10 +44,10 @@ MAN1= exmh.1 do-build: @cd ${WRKSRC} && ${SETENV} PREFIX=${PREFIX} \ WISH=${PREFIX}/bin/${WISH} WRKSRC=${WRKSRC} \ - FILESDIR=${FILESDIR} ${SCRIPTDIR}/build + FILESDIR=${FILESDIR} /bin/sh ${SCRIPTDIR}/build do-install: @cd ${WRKSRC} && ${SETENV} PREFIX=${PREFIX} \ - WRKSRC=${WRKSRC} ${SCRIPTDIR}/install + WRKSRC=${WRKSRC} /bin/sh ${SCRIPTDIR}/install .include <bsd.port.mk> |