diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-11-26 00:27:12 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-11-26 00:27:12 +0000 |
commit | 9328e86be2af37a1aaf60dcd0d9b02c1632b6ec9 (patch) | |
tree | 2f871e27c612e858e0fef9d557cd6c265e00939f /perl-install | |
parent | ef8e224c30594ca5af8a0b449eb4d8ca48b4e850 (diff) | |
download | drakx-9328e86be2af37a1aaf60dcd0d9b02c1632b6ec9.tar drakx-9328e86be2af37a1aaf60dcd0d9b02c1632b6ec9.tar.gz drakx-9328e86be2af37a1aaf60dcd0d9b02c1632b6ec9.tar.bz2 drakx-9328e86be2af37a1aaf60dcd0d9b02c1632b6ec9.tar.xz drakx-9328e86be2af37a1aaf60dcd0d9b02c1632b6ec9.zip |
no need to call common::backtrace(), use directly backtrace() (was it written that way to workaround a bug in old perl_checker?)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/standalone.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm index 1ed61d44d..553ec1e6c 100644 --- a/perl-install/standalone.pm +++ b/perl-install/standalone.pm @@ -10,7 +10,7 @@ if ($::isInstall) { require 'log.pm'; log::l('ERROR: use standalone made during install :-('); require common; - log::l('backtrace: ' . common::backtrace()); + log::l('backtrace: ' . backtrace()); } $::isStandalone = 1; |