diff options
author | reed <reed@pkgsrc.org> | 2005-04-01 03:49:01 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2005-04-01 03:49:01 +0000 |
commit | 7a0d3d4d6576b3fea91a160378f08c1af6f432c2 (patch) | |
tree | b31e066ba906c4fe697e15b0c29e394f7f070914 /devel | |
parent | 11da8a16b31838534a4a844591b83b9eecdb7789 (diff) | |
download | pkgsrc-7a0d3d4d6576b3fea91a160378f08c1af6f432c2.tar.gz |
Pre-create info directory. I noticed my pkg/info was the dmalloc.info
file.
Also use INFO_DIR instead of info (since this uses INFO_FILES).
Diffstat (limited to 'devel')
-rw-r--r-- | devel/dmalloc/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/devel/dmalloc/Makefile b/devel/dmalloc/Makefile index 331308dd4c0..badf97591aa 100644 --- a/devel/dmalloc/Makefile +++ b/devel/dmalloc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2004/04/27 03:09:58 snj Exp $ +# $NetBSD: Makefile,v 1.13 2005/04/01 03:49:01 reed Exp $ DISTNAME= dmalloc-5.3.0 CATEGORIES= devel @@ -15,11 +15,12 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-shlib CFLAGS+= -fPIC -DPIC CONFIGURE_ARGS+= --enable-threads +INSTALLATION_DIRS= ${INFO_DIR} # XXX the "installinfo" target is broken #INSTALL_TARGET= install installinfo post-install: - ${INSTALL_DATA} ${WRKSRC}/docs/dmalloc.info ${PREFIX}/info + ${INSTALL_DATA} ${WRKSRC}/docs/dmalloc.info ${PREFIX}/${INFO_DIR}/ INFO_FILES= dmalloc.info |