diff options
author | Dylan William Hardison <dylan@hardison.net> | 2015-08-24 20:45:49 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2015-08-24 20:45:49 +0200 |
commit | 77fbf1e1cd0bf2dec70577caa750d191fd717795 (patch) | |
tree | 3b8b5a8f4cc995a5c351a26501f9157ee8092c78 /Bugzilla | |
parent | d03b432557e0422d5b0dbd32e82d36d3f9a5b68a (diff) | |
download | bugzilla-77fbf1e1cd0bf2dec70577caa750d191fd717795.tar.gz bugzilla-77fbf1e1cd0bf2dec70577caa750d191fd717795.tar.xz |
Bug 1195836 - Remove install-module.pl from bmo
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Install/Filesystem.pm | 1 | ||||
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/Bugzilla/Install/Filesystem.pm b/Bugzilla/Install/Filesystem.pm index 41aaaa54d..addad918b 100644 --- a/Bugzilla/Install/Filesystem.pm +++ b/Bugzilla/Install/Filesystem.pm @@ -164,7 +164,6 @@ sub FILESYSTEM { 'migrate.pl' => { perms => OWNER_EXECUTE }, 'sentry.pl' => { perms => WS_EXECUTE }, 'metrics.pl' => { perms => WS_EXECUTE }, - 'install-module.pl' => { perms => OWNER_EXECUTE }, 'clean-bug-user-last-visit.pl' => { perms => WS_EXECUTE }, 'Bugzilla.pm' => { perms => CGI_READ }, diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 4b3e8aa76..41a4b04e1 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -784,7 +784,7 @@ sub install_command { $package = $module->{package}; } else { - $command = "$^X install-module.pl \%s"; + $command = 'cpanm %s'; # Non-Windows installations need to use module names, because # CPAN doesn't understand package names. $package = $module->{module}; |