diff options
-rw-r--r-- | info2html.conf | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/info2html.conf b/info2html.conf index e4947f5..f9e85d4 100644 --- a/info2html.conf +++ b/info2html.conf @@ -16,6 +16,8 @@ # Jon Howell (jonh@cs.dartmouth.edu) # 2006-08-17 2.0 several new config variables added # Sean M. Burke (sburke@cpan.org) +# 2015-12-27 V 2.1 Removed trailing slashes from INFO directories. +# +A.M.Danischewski (adam _ my lastname@not gamil.com #---------------------------------------------------------------- # Some of the following bits of code use some Unicode symbols. If that @@ -55,16 +57,15 @@ $CATALOG_URL = '<span class="icon">⇖</span>'; # exactly copy its infopath settings into here. @INFODIR = ( - '/usr/share/info/', - '/usr/share/info/emacs-21/', - + '/usr/share/info', + '/usr/share/info/emacs-21', '/usr/local/GNU/info', '/usr/local/GNU/emacs18.58/info', '/usr/local/info', '/opt/FSFgzip/info', '/opt/FSFgmake/info', '/opt/GCC2721/info', - '/usr/local/lib/bash-doc-2.01/lib/readline/doc/' + '/usr/local/lib/bash-doc-2.01/lib/readline/doc' ); #-- URL for documentation of info2html |