diff options
author | obache <obache> | 2007-12-27 15:06:02 +0000 |
---|---|---|
committer | obache <obache> | 2007-12-27 15:06:02 +0000 |
commit | ed7b845e74f11da94f318e5e6dea74b98fa0193c (patch) | |
tree | ce984ebe8bc3650a26a410f5191dd43df3eadd67 /security/cfs | |
parent | af2228492c251bebe9b2205ed9a79a9b2c221d5d (diff) | |
download | pkgsrc-ed7b845e74f11da94f318e5e6dea74b98fa0193c.tar.gz |
Try to create target directories before install manuals.
Diffstat (limited to 'security/cfs')
-rw-r--r-- | security/cfs/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/security/cfs/Makefile b/security/cfs/Makefile index 8c3c7ce7955..51cb9892bdc 100644 --- a/security/cfs/Makefile +++ b/security/cfs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2007/01/07 09:14:09 rillig Exp $ +# $NetBSD: Makefile,v 1.30 2007/12/27 15:06:02 obache Exp $ DISTNAME= cfs-1.4.1 PKGREVISION= 6 @@ -100,9 +100,11 @@ do-build: ${SH} ${CFS_BUILD_SCRIPT} ${BUILD_TARGET} post-install: + ${INSTALL_MAN_DIR} ${PREFIX}/${PKGMANDIR}/man1 cd ${WRKSRC}; for file in *.1; do \ ${INSTALL_MAN} $${file} ${PREFIX}/${PKGMANDIR}/man1/$${file}; \ done + ${INSTALL_MAN_DIR} ${PREFIX}/${PKGMANDIR}/man8 cd ${WRKSRC}; for file in *.8; do \ ${INSTALL_MAN} $${file} ${PREFIX}/${PKGMANDIR}/man8/$${file}; \ done |