diff options
author | Mike Pagano <mpagano@gentoo.org> | 2008-05-21 23:35:12 +0000 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2008-05-21 23:35:12 +0000 |
commit | 1d1773f714255849d542fda02cb214c082b4f290 (patch) | |
tree | 71ad5ff837be8b080b9116781c44b066d8433bf1 /app-text/man2html/files | |
parent | amd64 stable, bug #223143 (diff) | |
download | gentoo-2-1d1773f714255849d542fda02cb214c082b4f290.tar.gz gentoo-2-1d1773f714255849d542fda02cb214c082b4f290.tar.bz2 gentoo-2-1d1773f714255849d542fda02cb214c082b4f290.zip |
Version bump
(Portage version: 2.1.5.2)
Diffstat (limited to 'app-text/man2html/files')
-rw-r--r-- | app-text/man2html/files/mansec-1.6f.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app-text/man2html/files/mansec-1.6f.patch b/app-text/man2html/files/mansec-1.6f.patch new file mode 100644 index 000000000000..82f0dd487d90 --- /dev/null +++ b/app-text/man2html/files/mansec-1.6f.patch @@ -0,0 +1,12 @@ +--- man2html/scripts/cgi-bin/man/mansec.orig 2008-05-21 10:03:36.000000000 -0400 ++++ man2html/scripts/cgi-bin/man/mansec 2008-05-21 10:04:46.000000000 -0400 +@@ -117,7 +117,8 @@ BEGIN { + print "<p>Manual pages found under " man_path "." > cache_tmp; + + # Find any man[1-8]/filenames +- while ((("find " man_path " -follow -type f -printf '%f\n' | sort -f ") | getline manpage) > 0) { ++ find_cmd = "find " man_path " -follow -type f -printf '%f\n' | sort -f | uniq " ; ++ while ((find_cmd | getline manpage) > 0) { + # Check for new letter of alphabet + letter = tolower(substr(manpage,1,1)); + if (letter != last_letter) { |