diff options
author | grant <grant@pkgsrc.org> | 2003-05-05 17:30:54 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-05-05 17:30:54 +0000 |
commit | d1004809dcc2cc7f19c8dae029bf42be8aee2a98 (patch) | |
tree | e58f90ea6d744caceb2b57b7191beda225d0d842 /editors | |
parent | d3a5a36b2a76eba4bf84dc1ab5e82974039b5d73 (diff) | |
download | pkgsrc-d1004809dcc2cc7f19c8dae029bf42be8aee2a98.tar.gz |
do-install:
- be noisy.
- create directories first, then install files into them.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/xcoral/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/xcoral/Makefile b/editors/xcoral/Makefile index 9516c2fc0fb..f6f8b1b7836 100644 --- a/editors/xcoral/Makefile +++ b/editors/xcoral/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2001/02/25 04:17:44 hubertf Exp $ +# $NetBSD: Makefile,v 1.7 2003/05/05 17:30:54 grant Exp $ # FreeBSD Id: Makefile,v 1.6 1999/01/26 02:16:00 steve Exp # @@ -21,12 +21,12 @@ LIBFILES= DEPEND README cmd.sc color.sc comments.sc compare-win.sc \ utilities.sc version.sc window-utilities.sc xcoralrc.lf do-install: + ${INSTALL_DATA_DIR} ${PREFIX}/lib/xcoral + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xcoral/HTML/icons ${INSTALL_PROGRAM} ${WRKSRC}/xcoral ${PREFIX}/bin - @${INSTALL_DATA_DIR} ${PREFIX}/lib/xcoral .for FILE in ${LIBFILES} ${INSTALL_DATA} ${WRKSRC}/SmacLib/${FILE} ${PREFIX}/lib/xcoral .endfor - @${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xcoral/HTML/icons ${CP} -r ${WRKSRC}/Doc/* ${PREFIX}/share/doc/xcoral .include "../../mk/bsd.pkg.mk" |