summaryrefslogtreecommitdiffstats
path: root/perl-install/services.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/services.pm')
-rw-r--r--perl-install/services.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/services.pm b/perl-install/services.pm
index 5d5140161..596ca0feb 100644
--- a/perl-install/services.pm
+++ b/perl-install/services.pm
@@ -182,7 +182,7 @@ sub ask_install {
}
sub ask_standalone_gtk {
- my ($in, $prefix) = @_;
+ my ($_in, $prefix) = @_;
my ($l, $on_services) = services($prefix);
require ugtk2;
@@ -255,12 +255,12 @@ sub ask_standalone_gtk {
}
sub ask {
- my ($in, $prefix) = @_;
+ my ($in, $_prefix) = @_;
!$::isInstall && $in->isa('interactive::gtk') ? &ask_standalone_gtk : &ask_install;
}
sub doit {
- my ($in, $on_services, $prefix) = @_;
+ my ($_in, $on_services, $prefix) = @_;
my ($l, $was_on_services) = services($prefix);
foreach (@$l) {