diff options
Diffstat (limited to 'Master/texmf-dist/scripts/glossaries/makeglossaries')
-rwxr-xr-x | Master/texmf-dist/scripts/glossaries/makeglossaries | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/Master/texmf-dist/scripts/glossaries/makeglossaries b/Master/texmf-dist/scripts/glossaries/makeglossaries index 20a4b236fff..6807b69bae3 100755 --- a/Master/texmf-dist/scripts/glossaries/makeglossaries +++ b/Master/texmf-dist/scripts/glossaries/makeglossaries @@ -1,8 +1,8 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl # File : makeglossaries # Author : Nicola Talbot -# Version : 1.2 (2008/03/02) +# Version : 1.3 (2008/03/08) # Description: simple Perl script that calls makeindex. # Intended for use with "glossaries.sty" (saves having to remember # all the various switches) @@ -22,11 +22,15 @@ # The Current Maintainer of this work is Nicola Talbot. # This work consists of the files glossaries.dtx and glossaries.ins -# and the derived files glossaries.sty, glossary-hypernav.sty, -# glossary-list.sty, glossary-long.sty, glossary-super.sty, -# glossaries.perl. Also makeglossaries and makeglossaries. +# and the derived files glossaries.sty, mfirstuc.sty, +# glossary-hypernav.sty, glossary-list.sty, glossary-long.sty, +# glossary-super.sty, glossaries.perl. +# Also makeglossaries and makeglossaries. # # History: +# v1.3 (2008-03-08) : +# * changed first line from /usr/bin/perl -w to /usr/bin/env perl +# (Thanks to Karl Berry for suggesting this.) # v1.2 (2008-03-02) : # * added support for --help and --version # * improved error handling @@ -41,7 +45,7 @@ use strict; $Getopt::Std::STANDARD_HELP_VERSION = 1; -my $version="1.2 (2008-03-02)"; +my $version="1.3 (2008-03-08)"; my($opt_q, $opt_t, $opt_o, $opt_s, $opt_p, $opt_g, $opt_c, $opt_r, $opt_l, $opt_i)=("","","","","","","","","",""); |