diff options
author | grant <grant@pkgsrc.org> | 2003-05-05 17:53:12 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-05-05 17:53:12 +0000 |
commit | d616b1cb77f5c962da7cb3a37f272f7ffd079a14 (patch) | |
tree | bfde681e23bda760a4cb694510ba7afa80df0450 /emulators/spim | |
parent | 52b5dae8378ceedc131402cea26cd555c6a63e20 (diff) | |
download | pkgsrc-d616b1cb77f5c962da7cb3a37f272f7ffd079a14.tar.gz |
let make handle errors in pre-install, be noisier in post-install.
Diffstat (limited to 'emulators/spim')
-rw-r--r-- | emulators/spim/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/emulators/spim/Makefile b/emulators/spim/Makefile index 8d59ff3a5e2..578046f8fd4 100644 --- a/emulators/spim/Makefile +++ b/emulators/spim/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2003/03/29 12:40:51 jmmv Exp $ +# $NetBSD: Makefile,v 1.14 2003/05/05 17:53:12 grant Exp $ # FreeBSD Id: Makefile,v 1.5 1997/10/10 06:53:35 obrien Exp # @@ -26,15 +26,16 @@ pre-configure: @${RM} -f ${WRKSRC}/y.tab.* pre-install: - @${INSTALL_DATA_DIR} ${PREFIX}/share/spim && ${CHMOD} a+rx ${PREFIX}/share/spim + ${INSTALL_DATA_DIR} ${PREFIX}/share/spim + ${CHMOD} a+rx ${PREFIX}/share/spim post-install: @${ECHO} "Installing spim/xspim documentation" - @${INSTALL_DATA_DIR} ${PREFIX}/share/doc/spim \ + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/spim \ && ${CHMOD} a+rx ${PREFIX}/share/doc/spim - ${INSTALL_DATA} ${WRKSRC}/Documentation/spim.ps \ + ${INSTALL_DATA} ${WRKSRC}/Documentation/spim.ps \ ${PREFIX}/share/doc/spim - ${INSTALL_DATA} ${WRKSRC}/Documentation/cycle.ps \ + ${INSTALL_DATA} ${WRKSRC}/Documentation/cycle.ps \ ${PREFIX}/share/doc/spim ${GZIP_CMD} ${PREFIX}/share/doc/spim/*.ps |