diff options
author | adam.danischewski@gmail.com <adam.danischewski@code.google.com> | 2015-12-27 04:31:31 -0500 |
---|---|---|
committer | adam.danischewski@gmail.com <adam.danischewski@code.google.com> | 2015-12-27 04:31:31 -0500 |
commit | c87c78666dadd1f1857181000da7e0c13dced147 (patch) | |
tree | 525de6d523390f337e20b53d84b551da4d411560 | |
parent | 6e33e34f0c88111810abef002c76135cf6c36e2c (diff) |
Removed trailing slashes from INFO directories. +A.M.Dan.
-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 |