]> mj.ucw.cz Git - libucw.git/commitdiff
Configure: Replaced debPrint() by DebugDump().
authorMartin Mares <mj@ucw.cz>
Thu, 30 Oct 2008 21:27:04 +0000 (22:27 +0100)
committerMartin Mares <mj@ucw.cz>
Thu, 30 Oct 2008 21:27:04 +0000 (22:27 +0100)
ucw/perl/UCW/Configure.pm

index 6d4d3f1294c6d1dc59e5608de6792cb3792f1fde..b0005eeeb7ac75d5b25d11d6355dd99cb06a14d5 100644 (file)
@@ -16,7 +16,7 @@ BEGIN {
        our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
        $VERSION = 1.0;
        @ISA = qw(Exporter);
-       @EXPORT = qw(&Init &Log &Notice &Warn &Fail &IsSet &IsGiven &Set &UnSet &Append &Override &Get &Test &Include &Finish &FindFile &TryFindFile &TryCmd &PkgConfig &TrivConfig &debPrint &PostConfig &AtWrite);
+       @EXPORT = qw(&Init &Log &Notice &Warn &Fail &IsSet &IsGiven &Set &UnSet &Append &Override &Get &Test &Include &Finish &FindFile &TryFindFile &TryCmd &PkgConfig &TrivConfig &DebugDump &PostConfig &AtWrite);
        @EXPORT_OK = qw();
        %EXPORT_TAGS = ();
 }
@@ -26,9 +26,9 @@ our %overriden;
 our @postconfigs;
 our @atwrites;
 
-sub debPrint() {
-  print "VARS:\n";
-#  print "$_: $vars{$_}\n" foreach( keys %vars );
+sub DebugDump() {
+       print "VARS:\n";
+       print "$_: $vars{$_}\n" foreach( keys %vars );
 }
 
 sub Log($) {