From: Richard W.M. Jones Date: Wed, 27 Jul 2011 14:43:12 +0000 (+0100) Subject: perl: Fix another place where qw() was used as parentheses. X-Git-Tag: 1.12.2~1 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=2a12a89a3aebaf099b22ee85101a00e461da8a10;p=libguestfs.git perl: Fix another place where qw() was used as parentheses. This is a fix for Perl 5.14. See previous commit 5c3c7e8825341e18c9449976f8a321a04cc78d79. (cherry picked from commit c70532ab4b3d977ed7484e473107808b22d90a2a) --- diff --git a/perl/lib/Sys/Guestfs/Lib.pm b/perl/lib/Sys/Guestfs/Lib.pm index 4f094de..fc6a10f 100644 --- a/perl/lib/Sys/Guestfs/Lib.pm +++ b/perl/lib/Sys/Guestfs/Lib.pm @@ -1339,10 +1339,10 @@ sub _find_modprobe_aliases my %modprobe_aliases; - for my $pattern qw(/files/etc/conf.modules/alias - /files/etc/modules.conf/alias - /files/etc/modprobe.conf/alias - /files/etc/modprobe.d/*/alias) { + for my $pattern (qw(/files/etc/conf.modules/alias + /files/etc/modules.conf/alias + /files/etc/modprobe.conf/alias + /files/etc/modprobe.d/*/alias)) { for my $path ( $g->aug_match($pattern) ) { $path =~ m{^/files(.*)/alias(?:\[\d*\])?$} or die __x("{path} doesn't match augeas pattern",