diff options
author | rillig <rillig> | 2007-01-07 09:13:46 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-01-07 09:13:46 +0000 |
commit | 87e1bea888d90a6044a18e46681bc456ea30305c (patch) | |
tree | 77b9cef42b625156081609e43af1544d569620be /pkgtools/cdpack | |
parent | 0e3f31f90a7d6a3a3dc9c7045ed1c6c9c8dac0ac (diff) | |
download | pkgsrc-87e1bea888d90a6044a18e46681bc456ea30305c.tar.gz |
Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of
INSTALLATION_DIRS, as well as all occurrences of ${PREFIX}/man with
${PREFIX}/${PKGMANDIR}.
Fixes PR 35265, although I did not use the patch provided therein.
Diffstat (limited to 'pkgtools/cdpack')
-rw-r--r-- | pkgtools/cdpack/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/cdpack/Makefile b/pkgtools/cdpack/Makefile index aee900381a7..28b8f904534 100644 --- a/pkgtools/cdpack/Makefile +++ b/pkgtools/cdpack/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2006/02/05 23:10:34 joerg Exp $ +# $NetBSD: Makefile,v 1.23 2007/01/07 09:14:08 rillig Exp $ # DISTNAME= cdpack-1.7 @@ -23,7 +23,7 @@ USE_TOOLS+= expr:run USE_TOOLS+= sort:run USE_TOOLS+= tsort:run -INSTALLATION_DIRS= bin libexec man/man1 +INSTALLATION_DIRS= bin libexec ${PKGMANDIR}/man1 do-build: ${SED} -e 's;@prefix@;${PREFIX};g' \ @@ -43,6 +43,6 @@ do-build: do-install: ${INSTALL_SCRIPT} ${WRKSRC}/cdpack ${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/cdgen.awk ${PREFIX}/libexec - ${INSTALL_MAN} ${WRKSRC}/cdpack.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/cdpack.1 ${PREFIX}/${PKGMANDIR}/man1 .include "../../mk/bsd.pkg.mk" |