diff options
author | rillig <rillig@pkgsrc.org> | 2007-01-07 09:13:46 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-01-07 09:13:46 +0000 |
commit | 2829e658f2ba62cb77f3f151f468ec8de1549bd5 (patch) | |
tree | 77b9cef42b625156081609e43af1544d569620be /pkgtools/autoswc | |
parent | 5997a7db2d5af7de47f411825619ffc3689f1ce2 (diff) | |
download | pkgsrc-2829e658f2ba62cb77f3f151f468ec8de1549bd5.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/autoswc')
-rw-r--r-- | pkgtools/autoswc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/autoswc/Makefile b/pkgtools/autoswc/Makefile index dd690370ff6..a05d37255a0 100644 --- a/pkgtools/autoswc/Makefile +++ b/pkgtools/autoswc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2006/04/22 09:22:13 rillig Exp $ +# $NetBSD: Makefile,v 1.13 2007/01/07 09:14:08 rillig Exp $ DISTNAME= autoswc-1.5 CATEGORIES= pkgtools sysutils @@ -48,7 +48,7 @@ SUBST_SED.build+= -e 's|@PREFIX@|${PREFIX}|g' SUBST_SED.build+= -e 's|@SH@|${SH}|g' SUBST_SED.build+= -e 's|@SYSCONFDIR@|${PKG_SYSCONFDIR}|g' -INSTALLATION_DIRS= man/man8 sbin +INSTALLATION_DIRS= ${PKGMANDIR}/man8 sbin do-extract: ${CP} ${FILESDIR}/autoswc.8 ${WRKSRC} @@ -61,7 +61,7 @@ do-build: do-install: ${INSTALL_SCRIPT} ${WRKSRC}/autoswc ${PREFIX}/sbin - ${INSTALL_DATA} ${WRKSRC}/autoswc.8 ${PREFIX}/man/man8 + ${INSTALL_DATA} ${WRKSRC}/autoswc.8 ${PREFIX}/${PKGMANDIR}/man8 ${INSTALL_DATA_DIR} ${PREFIX}/share/autoswc ${INSTALL_DATA} ${WRKSRC}/autoswc.mk ${PREFIX}/share/autoswc ${INSTALL_DATA} ${WRKSRC}/config.site ${PREFIX}/share/autoswc |