diff options
author | grant <grant> | 2004-06-12 02:19:32 +0000 |
---|---|---|
committer | grant <grant> | 2004-06-12 02:19:32 +0000 |
commit | a4c3731284b3de389c524dae1f59de3c072bb6c4 (patch) | |
tree | 3df3761769132041e263ee5963795453a94b7d3a | |
parent | f1979a554fc930c9abfc7671758a5411e607c973 (diff) | |
download | pkgsrc-a4c3731284b3de389c524dae1f59de3c072bb6c4.tar.gz |
make sure the destination directory exists before trying to install
files into it.
-rw-r--r-- | devel/buildtool-doc/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/devel/buildtool-doc/Makefile b/devel/buildtool-doc/Makefile index b22447bc4cc..e8103208cf6 100644 --- a/devel/buildtool-doc/Makefile +++ b/devel/buildtool-doc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2004/04/25 10:05:15 jmmv Exp $ +# $NetBSD: Makefile,v 1.8 2004/06/12 02:19:32 grant Exp $ # DISTNAME= buildtool-doc-0.15 @@ -21,6 +21,9 @@ BUILDLINK_DEPMETHOD.libxml2?= build BUILDLINK_DEPMETHOD.libxslt?= build BUILDLINK_DEPMETHOD.xmlcatmgr?= build +pre-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/${DISTNAME} + .include "../../devel/buildtool/buildlink3.mk" .include "../../textproc/libxml2/buildlink3.mk" .include "../../textproc/libxslt/buildlink3.mk" |