diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-08-28 15:27:20 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-08-28 15:27:20 +0000 |
commit | b20e5e476f9d5296b3e695607b947351729ded13 (patch) | |
tree | 9099f19b49e14ccf85c43a69cfe2d0b5ce7f7eff | |
parent | 2f5af12a673cf6d620c8fec16136265747ee39e6 (diff) | |
download | drakx-backup-do-not-use-b20e5e476f9d5296b3e695607b947351729ded13.tar drakx-backup-do-not-use-b20e5e476f9d5296b3e695607b947351729ded13.tar.gz drakx-backup-do-not-use-b20e5e476f9d5296b3e695607b947351729ded13.tar.bz2 drakx-backup-do-not-use-b20e5e476f9d5296b3e695607b947351729ded13.tar.xz drakx-backup-do-not-use-b20e5e476f9d5296b3e695607b947351729ded13.zip |
fix MDK::Common::* explainations
-rw-r--r-- | perl-install/standalone.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm index bc78debea..fd20cb374 100644 --- a/perl-install/standalone.pm +++ b/perl-install/standalone.pm @@ -296,7 +296,7 @@ sub import { c::openlog($standalone_name."[$$]"); explanations('### Program is starting ###'); - eval "*MDK::Common::$_ = *$_" foreach @common_functs; + eval "*common::$_ = *$_" foreach @common_functs; foreach my $f (@builtin_functs) { eval "*$_"."::$f = *$f" foreach @drakx_modules; @@ -321,6 +321,7 @@ sub symlinkf { } sub output { + warn "output explanations\n"; explanations "created file $_[0]"; goto &MDK::Common::File::output; } |