summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-08-19 12:19:22 +0300
committerTor Lillqvist <tml@iki.fi>2013-08-19 12:22:10 +0300
commit65431ce126b01f3812c81557f8da0085a8bbb6ee (patch)
tree34bfeedab5083c089c52a3a3d4adf88b5e54405f /solenv
parent0d6d62a559e02c7468040dafc432c419e8fb7228 (diff)
Reduce verbosity: Don't print annoying warnings
Tons of these warnings were printed during the build, and nobody cared, so they can't be that serious, can they? Change-Id: Iecad7d8f6c562d04c5360161387212efef59b889
Diffstat (limited to 'solenv')
-rw-r--r--solenv/bin/packimages.pl9
1 files changed, 0 insertions, 9 deletions
diff --git a/solenv/bin/packimages.pl b/solenv/bin/packimages.pl
index 3e7015bba2ed..09e19dbddb23 100644
--- a/solenv/bin/packimages.pl
+++ b/solenv/bin/packimages.pl
@@ -456,7 +456,6 @@ sub read_links($$)
my $fname = "$path/links.txt";
if (!-f "$fname") {
- print STDERR "no links in $fname\n";
return;
}
@@ -516,14 +515,6 @@ sub remove_links_from_zip_list($$)
for my $link (keys %{$links}) {
if (defined $zip_hash_ref->{$link}) {
delete $zip_hash_ref->{$link};
- } else {
- print STDERR "Note: redundant '$link' -> '" .
- $links->{$link} . "' not found in filelist\n";
- }
- my $target = $links->{$link};
- if (!defined $zip_hash_ref->{$target}) {
- print STDERR "Warning: link '$link' to missing icon '" .
- $links->{$link} . "'\n";
}
}
}