diff options
Diffstat (limited to 'perl-install')
-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; } |