r29154 - /trunk/dh-make-perl/lib/DhMakePerl/Config.pm

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Sat Jan 3 15:32:02 UTC 2009


Author: dmn
Date: Sat Jan  3 15:31:57 2009
New Revision: 29154

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=29154
Log:
dusable command-line options abbreviation andd case-insensitivity

fixes a problem of interpreting -R as an option

Modified:
    trunk/dh-make-perl/lib/DhMakePerl/Config.pm

Modified: trunk/dh-make-perl/lib/DhMakePerl/Config.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/DhMakePerl/Config.pm?rev=29154&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/DhMakePerl/Config.pm (original)
+++ trunk/dh-make-perl/lib/DhMakePerl/Config.pm Sat Jan  3 15:31:57 2009
@@ -63,7 +63,7 @@
 
     # first get 'regular' options. commands are parsed in another
     # run below.
-    Getopt::Long::Configure('pass_through');
+    Getopt::Long::Configure( qw( pass_through no_auto_abbrev no_ignore_case ) );
     my %opts;
     GetOptions( \%opts, $self->options, )
         or die "Error parsing command-line options\n";




More information about the Pkg-perl-cvs-commits mailing list