summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-01-08 02:23:44 +0000
committerMike Frysinger <vapier@gentoo.org>2005-01-08 02:23:44 +0000
commit16bcf691bf7266ef48b76fd3a80291a450a1e783 (patch)
tree4b0c072b055ec33f159cdafa421fb39ca687432c /sys-apps/man/files
parentVersion bump. Also fix the <B7> gremlins #44201 by Chris Smith. (Manifest re... (diff)
downloadgentoo-2-16bcf691bf7266ef48b76fd3a80291a450a1e783.tar.gz
gentoo-2-16bcf691bf7266ef48b76fd3a80291a450a1e783.tar.bz2
gentoo-2-16bcf691bf7266ef48b76fd3a80291a450a1e783.zip
Punt redhat fixes since they are outdated and not really useful anymore.
Diffstat (limited to 'sys-apps/man/files')
-rw-r--r--sys-apps/man/files/man-1.5o_p2-defmanpath-symlinks.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/sys-apps/man/files/man-1.5o_p2-defmanpath-symlinks.patch b/sys-apps/man/files/man-1.5o_p2-defmanpath-symlinks.patch
new file mode 100644
index 000000000000..9261fb6aca4a
--- /dev/null
+++ b/sys-apps/man/files/man-1.5o_p2-defmanpath-symlinks.patch
@@ -0,0 +1,20 @@
+--- man-1.5o2/src/makewhatis.sh.orig 2005-01-07 21:19:37.812163552 -0500
++++ man-1.5o2/src/makewhatis.sh 2005-01-07 21:20:43.023249960 -0500
+@@ -41,7 +41,7 @@
+ # and should be first.
+ # It is a bug to add /var/cache/man to DEFCATPATH.
+ dm=
+-for d in /usr/man /usr/share/man
++for d in /usr/local/man /usr/share/man
+ do
+ if [ -d $d ]; then
+ if [ x$dm = x ]; then dm=$d; else dm=$dm:$d; fi
+@@ -49,7 +49,7 @@
+ done
+ DEFMANPATH=$dm
+ dc=
+-for d in /usr/man/preformat /usr/man /usr/share/man/preformat /usr/share/man
++for d in /usr/local/man /usr/share/man
+ do
+ if [ -d $d ]; then
+ if [ x$dc = x ]; then dc=$d; else dc=$dc:$d; fi