diff options
author | obache <obache> | 2007-12-27 15:06:02 +0000 |
---|---|---|
committer | obache <obache> | 2007-12-27 15:06:02 +0000 |
commit | 3ddc9d78fdc74dd12a9b03d3d1cc04a93b086475 (patch) | |
tree | ce984ebe8bc3650a26a410f5191dd43df3eadd67 /security | |
parent | 0af9fcc6ef5d51e385e007431ad9a48767f04b20 (diff) | |
download | pkgsrc-3ddc9d78fdc74dd12a9b03d3d1cc04a93b086475.tar.gz |
Try to create target directories before install manuals.
Diffstat (limited to 'security')
-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 |