diff options
author | Guillaume Rousse <guillomovitch@mageia.org> | 2012-09-22 10:35:55 +0000 |
---|---|---|
committer | Guillaume Rousse <guillomovitch@mageia.org> | 2012-09-22 10:35:55 +0000 |
commit | 35a4a59ef8798ba49d614c5591e27ceed639c0fb (patch) | |
tree | 4a2d52ef0f3a9c9ecbb6b142262ab314cedc48d5 /perl-install/standalone.pm | |
parent | 34f8464b530c865a9be7d7580e14d8bda6ae9a93 (diff) | |
download | drakx-35a4a59ef8798ba49d614c5591e27ceed639c0fb.tar drakx-35a4a59ef8798ba49d614c5591e27ceed639c0fb.tar.gz drakx-35a4a59ef8798ba49d614c5591e27ceed639c0fb.tar.bz2 drakx-35a4a59ef8798ba49d614c5591e27ceed639c0fb.tar.xz drakx-35a4a59ef8798ba49d614c5591e27ceed639c0fb.zip |
declare exit as a function, to allow to override synonymous builtin
Diffstat (limited to 'perl-install/standalone.pm')
-rw-r--r-- | perl-install/standalone.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm index 8c8ee339c..cae5a58c8 100644 --- a/perl-install/standalone.pm +++ b/perl-install/standalone.pm @@ -2,6 +2,7 @@ package standalone; # $Id: standalone.pm 262870 2009-10-27 10:53:55Z tv $ use c; use strict; +use subs qw(exit); use common qw(N N_ if_ backtrace); use Config; |