diff options
author | grant <grant> | 2003-05-05 18:24:11 +0000 |
---|---|---|
committer | grant <grant> | 2003-05-05 18:24:11 +0000 |
commit | 534181fccf7c11165e2b9a3c7ce235358415fe33 (patch) | |
tree | 2b1a85a14f6b6ce3a6332926a8428c8ece3fa31e | |
parent | da4dbda50b15086709c642e29335f35be696f3fa (diff) | |
download | pkgsrc-534181fccf7c11165e2b9a3c7ce235358415fe33.tar.gz |
post-install:
- don't call install with multiple directory args.
-rw-r--r-- | emulators/x48/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emulators/x48/Makefile b/emulators/x48/Makefile index b9601178f5d..a00d437be1d 100644 --- a/emulators/x48/Makefile +++ b/emulators/x48/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2003/03/29 12:40:52 jmmv Exp $ +# $NetBSD: Makefile,v 1.4 2003/05/05 18:24:11 grant Exp $ # DISTNAME= x48_041 @@ -14,8 +14,8 @@ COMMENT= HP48 emulator USE_IMAKE= YES post-install: - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/x48 \ - ${PREFIX}/share/doc/x48/romdump + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/x48 + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/x48/romdump cd ${WRKSRC}/doc && \ ${INSTALL_MAN} CARDS.doc INSTALLING ROMDump.doc \ ${PREFIX}/share/doc/x48 |