summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-01-25 11:21:52 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-01-25 11:21:52 +0000
commit7348b3eea1ed8e70d154260cb046f4d6fd6b4a1e (patch)
tree75ad89cfb9d95e57a06dea9abdc20d32069c4bf7 /perl-install
parent21b047ca9dcde8073328620c1ecfcf2370f3a7b0 (diff)
downloaddrakx-backup-do-not-use-7348b3eea1ed8e70d154260cb046f4d6fd6b4a1e.tar
drakx-backup-do-not-use-7348b3eea1ed8e70d154260cb046f4d6fd6b4a1e.tar.gz
drakx-backup-do-not-use-7348b3eea1ed8e70d154260cb046f4d6fd6b4a1e.tar.bz2
drakx-backup-do-not-use-7348b3eea1ed8e70d154260cb046f4d6fd6b4a1e.tar.xz
drakx-backup-do-not-use-7348b3eea1ed8e70d154260cb046f4d6fd6b4a1e.zip
(spawnShell): fix error message
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/install_any.pm2
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;