From b43eb27e0c2d1f3a5d486ab3d65c2102966600ed Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Sat, 6 Oct 2007 03:54:30 +0000 Subject: Bug 398798: checksetup.pl 'commands to install' should quote Perl module names Patch By Max Kanat-Alexander r=LpSolit, a=mkanat --- Bugzilla/Install/Requirements.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/Install/Requirements.pm') diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 305c0843a..885c407ee 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -530,7 +530,7 @@ sub install_command { $package = $module->{package}; } else { - $command = "$^X -MCPAN -e 'install \%s'"; + $command = "$^X -MCPAN -e 'install \"\%s\"'"; # Non-Windows installations need to use module names, because # CPAN doesn't understand package names. $package = $module->{module}; -- cgit v1.2.3-24-g4f1b