summaryrefslogtreecommitdiff
path: root/security/heimdal/patches/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'security/heimdal/patches/patch-ab')
-rw-r--r--security/heimdal/patches/patch-ab30
1 files changed, 0 insertions, 30 deletions
diff --git a/security/heimdal/patches/patch-ab b/security/heimdal/patches/patch-ab
deleted file mode 100644
index b67664f58be..00000000000
--- a/security/heimdal/patches/patch-ab
+++ /dev/null
@@ -1,30 +0,0 @@
-$NetBSD: patch-ab,v 1.2 2005/10/26 15:12:45 jlam Exp $
-
---- cf/install-catman.sh.orig 2005-09-09 08:12:22.000000000 -0400
-+++ cf/install-catman.sh
-@@ -9,6 +9,7 @@ mkinstalldirs="$1"; shift
- srcdir="$1"; shift
- manbase="$1"; shift
- suffix="$1"; shift
-+catinstall="${INSTALL_CATPAGES-yes}"
-
- for f in "$@"; do
- base=`echo "$f" | sed 's/\(.*\)\.\([^.]*\)$/\1/'`
-@@ -17,7 +18,7 @@ for f in "$@"; do
- catdir="$manbase/cat$section"
- c="$base.cat$section"
-
-- if test -f "$srcdir/$c"; then
-+ if test "$catinstall" = yes -a -f "$srcdir/$c"; then
- if test \! -d "$catdir"; then
- eval "$mkinstalldirs $catdir"
- fi
-@@ -36,7 +37,7 @@ for f in "$@"; do
- break
- fi
- done
-- if test -f "$srcdir/$c"; then
-+ if test "$catinstall" = yes -a -f "$srcdir/$c"; then
- target="$catdir/$link.$suffix"
- for cmd in "ln -f $catdir/$base.$suffix $target" \
- "ln -fs $base.$suffix $target" \