diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-06-16 12:22:52 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-06-16 12:22:52 +0000 |
commit | fdea217b2ca6af2ba7d3e1dd20ae834de21d5ce3 (patch) | |
tree | 25a25ff0a31430b0ee06ddcd3d1e1ad680168448 /perl-install/modules.pm | |
parent | ad824ff22cc3f0e1c03cd37fd7f791312a1468d7 (diff) | |
download | drakx-fdea217b2ca6af2ba7d3e1dd20ae834de21d5ce3.tar drakx-fdea217b2ca6af2ba7d3e1dd20ae834de21d5ce3.tar.gz drakx-fdea217b2ca6af2ba7d3e1dd20ae834de21d5ce3.tar.bz2 drakx-fdea217b2ca6af2ba7d3e1dd20ae834de21d5ce3.tar.xz drakx-fdea217b2ca6af2ba7d3e1dd20ae834de21d5ce3.zip |
no_comment
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index e3d893821..28a5cd6b7 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -590,9 +590,11 @@ sub get_pcmcia_devices($$) { symlink("/tmp/stage2/etc/pcmcia", "/etc/pcmcia") unless -e "/etc/pcmcia"; symlink("/sbin/install", "/sbin/cardmgr") unless -x "/sbin/cardmgr"; - load("pcmcia_core"); - load($pcic); - load("ds"); + eval { + load("pcmcia_core"); + load($pcic); + load("ds"); + }; #- run cardmgr in foreground while it is configuring the card. run_program::run("cardmgr", "-f", "-m" ,"/modules"); |