diff options
author | reed <reed> | 2005-04-01 03:49:01 +0000 |
---|---|---|
committer | reed <reed> | 2005-04-01 03:49:01 +0000 |
commit | 3caeba622bf8c19c56ac57a5b14d92c9f50f9172 (patch) | |
tree | b31e066ba906c4fe697e15b0c29e394f7f070914 /devel/dmalloc | |
parent | 6480ff7e42b2309527f9a52f5e4d8e6acb656ee6 (diff) | |
download | pkgsrc-3caeba622bf8c19c56ac57a5b14d92c9f50f9172.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/dmalloc')
-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 |