From 90dcbc50c32fd479671c0a69361b8daf8be75549 Mon Sep 17 00:00:00 2001 From: grant Date: Mon, 5 May 2003 17:45:35 +0000 Subject: [PATCH] do-build: - use cd && ... instead of cd ; ... let make handle errors in do-install rather than stacking commands with ; --- emulators/minivmac/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/emulators/minivmac/Makefile b/emulators/minivmac/Makefile index 635acdba0525..b67ec302bfd1 100644 --- a/emulators/minivmac/Makefile +++ b/emulators/minivmac/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2003/03/29 12:40:49 jmmv Exp $ +# $NetBSD: Makefile,v 1.4 2003/05/05 17:45:35 grant Exp $ DISTNAME= minivmac-0.1.7.src PKGNAME= minivmac-0.1.7 @@ -18,12 +18,12 @@ SCRIPTS_ENV+= CC="${CC}" DOCDIR= ${PREFIX}/share/doc/html/minivmac do-build: - cd ${WRKSRC}/tool/bash; \ + cd ${WRKSRC}/tool/bash && ${SETENV} ${SCRIPTS_ENV} ${SH} build do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/drv/minivmac ${PREFIX}/bin; \ - ${INSTALL_DATA_DIR} ${DOCDIR}; \ - ${INSTALL_DATA} ${WRKSRC}/doc/*.html ${DOCDIR} + ${INSTALL_DATA_DIR} ${DOCDIR} + ${INSTALL_PROGRAM} ${WRKSRC}/drv/minivmac ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/doc/*.html ${DOCDIR} .include "../../mk/bsd.pkg.mk"