diff options
author | lloyd <[email protected]> | 2008-10-11 18:46:24 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-11 18:46:24 +0000 |
commit | eeefdaacd9ab807449da279d469e361440bb96e1 (patch) | |
tree | 0d96a03325b68a2027dd6910b7ca1b85a338981a | |
parent | f05253af1f619e6ceec4c8a043ae54debbf17e8e (diff) |
Comment out or remove some of the louder/less useful trace messages
-rwxr-xr-x | configure.pl | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/configure.pl b/configure.pl index 64d15d249..33cf958bb 100755 --- a/configure.pl +++ b/configure.pl @@ -905,7 +905,7 @@ sub libs { sub portable_symlink { my ($from, $to_dir, $to_fname) = @_; - trace("portable_symlink($from, $to_dir, $to_fname)"); + #trace("portable_symlink($from, $to_dir, $to_fname)"); my $can_symlink = 0; my $can_link = 0; @@ -1090,7 +1090,7 @@ sub realname { sub load_module { my ($config, $modname) = @_; - trace("load_module($modname)"); + #trace("load_module($modname)"); croak("Unknown module $modname") unless defined($MODULES{$modname}); @@ -1122,9 +1122,6 @@ sub load_module { croak("Module '$modname' does not work with $cc") unless(&$works_on($cc, $module{'cc'})); - trace($modname); - trace($module{'moddirs'}); - my $handle_files = sub { my($lst, $func) = @_; return unless defined($lst); @@ -1344,7 +1341,7 @@ sub check_for_file { sub process_template { my ($in, $out, $config) = @_; - trace("$in -> $out"); + trace("process_template: $in -> $out"); my $contents = slurp_file($in); |