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>
This commit is contained in:
Peter Wemm 1997-07-08 02:45:57 +00:00
parent 684562e3f3
commit a22c6c11e6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=7235

View File

@ -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>