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 | 5d9eb1512d2e9047b33795631bf3ff0cae31fd24 (patch) | |
tree | 4a2d52ef0f3a9c9ecbb6b142262ab314cedc48d5 /perl-install | |
parent | a5522b94a6d210bf2a2e9a2f75dad649ac7370a2 (diff) | |
download | drakx-backup-do-not-use-5d9eb1512d2e9047b33795631bf3ff0cae31fd24.tar drakx-backup-do-not-use-5d9eb1512d2e9047b33795631bf3ff0cae31fd24.tar.gz drakx-backup-do-not-use-5d9eb1512d2e9047b33795631bf3ff0cae31fd24.tar.bz2 drakx-backup-do-not-use-5d9eb1512d2e9047b33795631bf3ff0cae31fd24.tar.xz drakx-backup-do-not-use-5d9eb1512d2e9047b33795631bf3ff0cae31fd24.zip |
declare exit as a function, to allow to override synonymous builtin
Diffstat (limited to 'perl-install')
-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; |