summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_gtk.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-10-23 09:31:15 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-10-23 09:31:15 +0000
commit0e3d72eca499579b4a88d8ef183f40f621d5983b (patch)
treeb698053d32feea47a8bba77dc8a03773eca3db9a /perl-install/install_steps_gtk.pm
parent09724beb3ec13988de95fed30e51935ef9f0f436 (diff)
downloaddrakx-backup-do-not-use-0e3d72eca499579b4a88d8ef183f40f621d5983b.tar
drakx-backup-do-not-use-0e3d72eca499579b4a88d8ef183f40f621d5983b.tar.gz
drakx-backup-do-not-use-0e3d72eca499579b4a88d8ef183f40f621d5983b.tar.bz2
drakx-backup-do-not-use-0e3d72eca499579b4a88d8ef183f40f621d5983b.tar.xz
drakx-backup-do-not-use-0e3d72eca499579b4a88d8ef183f40f621d5983b.zip
don't use exit(), use _exit()
Diffstat (limited to 'perl-install/install_steps_gtk.pm')
-rw-r--r--perl-install/install_steps_gtk.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm
index 594039754..142b16cbf 100644
--- a/perl-install/install_steps_gtk.pm
+++ b/perl-install/install_steps_gtk.pm
@@ -61,7 +61,7 @@ sub new($$) {
launch_X:
if (!fork()) {
c::setsid();
- exec $server, @options or exit 1;
+ exec $server, @options or c::_exit(1);
}
my $nb;
foreach (1..60) {