diff options
author | skrll <skrll@pkgsrc.org> | 2001-03-31 20:40:22 +0000 |
---|---|---|
committer | skrll <skrll@pkgsrc.org> | 2001-03-31 20:40:22 +0000 |
commit | 972a7fbf70b4cdd88b58977805df0499f5a7e5a1 (patch) | |
tree | e33dee35a350aed17c0b227a1f9b64bb08a6104b /textproc/jade | |
parent | 27e5c6a14bc23f32596074dd039e549aa2fc001f (diff) | |
download | pkgsrc-972a7fbf70b4cdd88b58977805df0499f5a7e5a1.tar.gz |
Create the right directory before trying to install documentation.
${MKDIR} -> ${INSTALL_DATA_DIR}
Diffstat (limited to 'textproc/jade')
-rw-r--r-- | textproc/jade/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/textproc/jade/Makefile b/textproc/jade/Makefile index 6161a1bbd7b..cb3523d3429 100644 --- a/textproc/jade/Makefile +++ b/textproc/jade/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2001/03/29 15:41:53 hubertf Exp $ +# $NetBSD: Makefile,v 1.9 2001/03/31 20:40:22 skrll Exp $ # FreeBSD Id: Makefile,v 1.15 1999/01/31 11:15:57 dirk Exp # @@ -28,9 +28,9 @@ post-install: .endfor ${INSTALL_DATA_DIR} ${PREFIX}/include/sp ${INSTALL_DATA} ${WRKSRC}/include/* ${PREFIX}/include/sp - ${MKDIR} ${PREFIX}/share/doc/sp + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/jade ${INSTALL_DATA} ${WRKSRC}/jadedoc/*.htm ${PREFIX}/share/doc/jade - ${MKDIR} ${PREFIX}/share/sgml/jade + ${INSTALL_DATA_DIR} ${PREFIX}/share/sgml/jade ${INSTALL_DATA} ${WRKSRC}/dsssl/* ${PREFIX}/share/sgml/jade .include "../../mk/bsd.pkg.mk" |