diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2002-07-16 14:06:52 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2002-07-16 14:06:52 +0000 |
commit | 5dadd1307a5c7f189e4bfe941cfd9e1197e18a00 (patch) | |
tree | 63c89cb3d0ad437d1a742abd1f07c5ba174e0326 /mdk-stage1 | |
parent | 161e860fa6eb467513951b15fbce41fe23d46796 (diff) | |
download | drakx-5dadd1307a5c7f189e4bfe941cfd9e1197e18a00.tar drakx-5dadd1307a5c7f189e4bfe941cfd9e1197e18a00.tar.gz drakx-5dadd1307a5c7f189e4bfe941cfd9e1197e18a00.tar.bz2 drakx-5dadd1307a5c7f189e4bfe941cfd9e1197e18a00.tar.xz drakx-5dadd1307a5c7f189e4bfe941cfd9e1197e18a00.zip |
extend a bit fatal error when trying to execute
/usr/bin/runinstall2 and it's not possible
Diffstat (limited to 'mdk-stage1')
-rw-r--r-- | mdk-stage1/stage1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mdk-stage1/stage1.c b/mdk-stage1/stage1.c index b70cf33a3..44ed25155 100644 --- a/mdk-stage1/stage1.c +++ b/mdk-stage1/stage1.c @@ -461,6 +461,7 @@ int main(int argc __attribute__ ((unused)), char **argv __attribute__ ((unused)) execve(stage2_args[0], stage2_args, grab_env()); printf("error in exec of stage2 :-(\n"); + printf("trying to execute '/usr/bin/runinstall2' from the installation volume,\nthe following fatal error occurred\n"); fatal_error(strerror(errno)); return 0; /* shut up compiler (we can't get here anyway!) */ |