diff options
author | asami <asami@FreeBSD.org> | 1996-12-05 10:59:49 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-12-05 10:59:49 +0000 |
commit | 5e7b19501728b296dd594b85c7b7ee59219a59e3 (patch) | |
tree | f6b7c871d72d4e0bcf30f8178724947748d9503e /emulators/ines/Makefile | |
parent | a42886e272e84185fe0c74ffec6c493fd29aec99 (diff) | |
download | FreeBSD-ports-5e7b19501728b296dd594b85c7b7ee59219a59e3.zip FreeBSD-ports-5e7b19501728b296dd594b85c7b7ee59219a59e3.tar.gz |
Use ${MKDIR} and ${INSTALL_DATA} instead of mkdir and cp. Now can
install twice (because ${MKDIR} never fails because of existing dirs).
Diffstat (limited to 'emulators/ines/Makefile')
-rw-r--r-- | emulators/ines/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emulators/ines/Makefile b/emulators/ines/Makefile index 6133bc6..f058624 100644 --- a/emulators/ines/Makefile +++ b/emulators/ines/Makefile @@ -3,7 +3,7 @@ # Date created: 02 November 1996 # Whom: Yukihiro Nakai <Nakai@Mlab.t.u-tokyo.ac.jp> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1996/11/15 16:53:43 erich Exp $ # DISTNAME= NES @@ -21,8 +21,8 @@ do-build: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ines ${PREFIX}/bin/ines ${INSTALL_PROGRAM} ${WRKSRC}/dasm ${PREFIX}/bin/dasm - @mkdir ${PREFIX}/share/ines - @cp ${WRKSRC}/iNES.doc ${PREFIX}/share/ines + @${MKDIR} ${PREFIX}/share/ines + @${INSTALL_DATA} ${WRKSRC}/iNES.doc ${PREFIX}/share/ines .include <bsd.port.mk> |