From 9047be4f9b1f552799fba1aecd2af21d42d191e8 Mon Sep 17 00:00:00 2001 From: Felix Janda Date: Fri, 27 Oct 2017 19:30:04 -0400 Subject: [PATCH] msgaccel-prepare: work around Getopt::Long behavior change Avoid the following: ./msgaccel-prepare -S"dir" file Unknown option: Sdir So "dir" is no longer interpreted as an argument to "-S". This was apparently introduced in Getopt::Long version 2.48. --- po/perl/msgaccel-prepare | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/perl/msgaccel-prepare b/po/perl/msgaccel-prepare index 4b68310fe..eead3992d 100755 --- a/po/perl/msgaccel-prepare +++ b/po/perl/msgaccel-prepare @@ -4,7 +4,7 @@ use strict; use warnings; use Locale::PO qw(); -use Getopt::Long qw(GetOptions :config bundling gnu_compat); +use Getopt::Long qw(GetOptions :config bundling); use autouse 'Pod::Usage' => qw(pod2usage); use autouse 'File::Spec::Functions' => qw(catfile);