diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-03-23 20:23:03 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-03-23 20:23:03 +0000 |
commit | 0def9457072f4cc035a3e88c4ffe4cd864369403 (patch) | |
tree | 5965376ef1a9790c116b0d523a187924b06a4931 /perl-install | |
parent | b8a549e05ec237b2251c26904859869fddb7a849 (diff) | |
download | drakx-0def9457072f4cc035a3e88c4ffe4cd864369403.tar drakx-0def9457072f4cc035a3e88c4ffe4cd864369403.tar.gz drakx-0def9457072f4cc035a3e88c4ffe4cd864369403.tar.bz2 drakx-0def9457072f4cc035a3e88c4ffe4cd864369403.tar.xz drakx-0def9457072f4cc035a3e88c4ffe4cd864369403.zip |
(SEGV_handler) add a perl_checker hint
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/install2.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install/install2.pm b/perl-install/install/install2.pm index 524bfc15d..03f617154 100644 --- a/perl-install/install/install2.pm +++ b/perl-install/install/install2.pm @@ -27,7 +27,6 @@ use log; use fs; use fs::any; - #-####################################################################################### #-$O #-the big struct which contain, well everything (globals + the interactive methods ...) @@ -319,6 +318,7 @@ sub main { $SIG{SEGV} = sub { my $msg = "segmentation fault: install crashed (maybe memory is missing?)\n" . backtrace(); log::l("$msg\n"); + # perl_checker: require UNIVERSAL UNIVERSAL::can($o, 'ask_warn') and $o->ask_warn('', $msg); setVirtual(1); require install::steps_auto_install; |