summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgrant <grant@pkgsrc.org>2003-05-05 17:45:35 +0000
committergrant <grant@pkgsrc.org>2003-05-05 17:45:35 +0000
commit90dcbc50c32fd479671c0a69361b8daf8be75549 (patch)
tree4133b88135b5841bbde90f4617ac852884451875
parent52a519c9b08929720e9af17251cbcc199ae89901 (diff)
downloadpkgsrc-90dcbc50c32fd479671c0a69361b8daf8be75549.tar.gz
do-build:
- use cd && ... instead of cd ; ... let make handle errors in do-install rather than stacking commands with ;
-rw-r--r--emulators/minivmac/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/emulators/minivmac/Makefile b/emulators/minivmac/Makefile
index 635acdba052..b67ec302bfd 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"