diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-14 11:19:17 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-14 11:19:17 +0000 |
commit | d93e345b240fe9d6561301a64e5d71d278067e56 (patch) | |
tree | 75630936e4f93cbba02c23dede76cc11d40079e0 /perl-install/install_steps.pm | |
parent | 62954106b75817d27a799a44e876ef85250c4f48 (diff) | |
download | drakx-d93e345b240fe9d6561301a64e5d71d278067e56.tar drakx-d93e345b240fe9d6561301a64e5d71d278067e56.tar.gz drakx-d93e345b240fe9d6561301a64e5d71d278067e56.tar.bz2 drakx-d93e345b240fe9d6561301a64e5d71d278067e56.tar.xz drakx-d93e345b240fe9d6561301a64e5d71d278067e56.zip |
use $::prefix
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 49e620a8b..6c9604d7c 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -698,7 +698,7 @@ sub configureServices { my ($o) = @_; if ($o->{services}) { require services; - services::doit($o, $o->{services}, $o->{prefix}); + services::doit($o, $o->{services}); } } #------------------------------------------------------------------------------ |