diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-01-25 11:21:52 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-01-25 11:21:52 +0000 |
commit | 7348b3eea1ed8e70d154260cb046f4d6fd6b4a1e (patch) | |
tree | 75ad89cfb9d95e57a06dea9abdc20d32069c4bf7 /perl-install/install_any.pm | |
parent | 21b047ca9dcde8073328620c1ecfcf2370f3a7b0 (diff) | |
download | drakx-7348b3eea1ed8e70d154260cb046f4d6fd6b4a1e.tar drakx-7348b3eea1ed8e70d154260cb046f4d6fd6b4a1e.tar.gz drakx-7348b3eea1ed8e70d154260cb046f4d6fd6b4a1e.tar.bz2 drakx-7348b3eea1ed8e70d154260cb046f4d6fd6b4a1e.tar.xz drakx-7348b3eea1ed8e70d154260cb046f4d6fd6b4a1e.zip |
(spawnShell): fix error message
Diffstat (limited to 'perl-install/install_any.pm')
-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; |