summaryrefslogtreecommitdiff
path: root/pkgtools/pkg_alternatives/files
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2007-01-15 02:50:06 +0000
committerrillig <rillig@pkgsrc.org>2007-01-15 02:50:06 +0000
commitb6c7c8977f9175d712864287768357930fbb626f (patch)
tree3b5e85fc80bdb055ed85da708ffa6080788e90cf /pkgtools/pkg_alternatives/files
parent0f0da8c9aad7521bbe7b825d7cfbd6d474ced534 (diff)
downloadpkgsrc-b6c7c8977f9175d712864287768357930fbb626f.tar.gz
Updated pkg_alternatives to 1.4.
Changes since 1.3: - Added support for non-standard PKGMANDIR.
Diffstat (limited to 'pkgtools/pkg_alternatives/files')
-rw-r--r--pkgtools/pkg_alternatives/files/pkg_alternatives.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgtools/pkg_alternatives/files/pkg_alternatives.sh b/pkgtools/pkg_alternatives/files/pkg_alternatives.sh
index 5665d4754d0..6ef7126a6b6 100644
--- a/pkgtools/pkg_alternatives/files/pkg_alternatives.sh
+++ b/pkgtools/pkg_alternatives/files/pkg_alternatives.sh
@@ -1,6 +1,6 @@
#!@SH@
#
-# $NetBSD: pkg_alternatives.sh,v 1.5 2005/02/10 10:18:03 jmmv Exp $
+# $NetBSD: pkg_alternatives.sh,v 1.6 2007/01/15 02:50:06 rillig Exp $
#
# pkg_alternatives - Generic wrappers for programs with similar interfaces
# Copyright (c) 2005 Julio M. Merino Vidal <jmmv@NetBSD.org>
@@ -41,6 +41,7 @@ Prog_Name=${0##*/}
Verbose=yes
: ${PKG_DBDIR:=@PKG_DBDIR@}
+: ${PKGMANDIR:=@PKGMANDIR@}
# -------------------------------------------------------------------------
@@ -488,7 +489,7 @@ get_my_config() {
#
get_manpage() {
sect=$(get_manpage_sect ${1})
- echo ${Prefix}/man/man${sect}/${1##*/}.${sect}
+ echo ${Prefix}/${PKGMANDIR}/man${sect}/${1##*/}.${sect}
}
# -------------------------------------------------------------------------