diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 78314fd34..3b0d0d16c 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -211,7 +211,7 @@ sub getNextStep { sub spawnShell { return if $::o->{localInstall} || $::testing; - -x "/bin/sh" or die "cannot open shell - /usr/bin/sh doesn't exist"; + -x "/bin/sh" or die "cannot open shell - /bin/sh doesn't exist"; fork and return; |