diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-02-07 13:20:47 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-02-07 13:20:47 +0000 |
commit | 69772d4a6d5a625154c787a0bc69694de6e968a3 (patch) | |
tree | 454bb21dc26ee9609e0c934af94d615164ffa71b /perl-install | |
parent | 945feb3cae2a9dc2f5fea0a98ea4f212fdbe95ba (diff) | |
download | drakx-69772d4a6d5a625154c787a0bc69694de6e968a3.tar drakx-69772d4a6d5a625154c787a0bc69694de6e968a3.tar.gz drakx-69772d4a6d5a625154c787a0bc69694de6e968a3.tar.bz2 drakx-69772d4a6d5a625154c787a0bc69694de6e968a3.tar.xz drakx-69772d4a6d5a625154c787a0bc69694de6e968a3.zip |
(exit): ensure USR1 is sent to mcc
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/interactive_gtk.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/interactive_gtk.pm b/perl-install/interactive_gtk.pm index e42833f80..bd7ca88f8 100644 --- a/perl-install/interactive_gtk.pm +++ b/perl-install/interactive_gtk.pm @@ -22,6 +22,7 @@ sub leave_console { my ($o) = @_; common::setVirtual(delete $o->{suspended}) } sub exit { gtkset_mousecursor_normal(); #- for restoring a normal in any case on standalone my_gtk::flush(); + $::isEmbedded and kill 10, $::CCPID; #10 is USR1 c::_exit($_[1]) #- workaround } |