[Libreoffice-commits] core.git: solenv/bin

Tor Lillqvist tml at iki.fi
Mon Aug 19 02:23:59 PDT 2013


 solenv/bin/packimages.pl |    9 ---------
 1 file changed, 9 deletions(-)

New commits:
commit 65431ce126b01f3812c81557f8da0085a8bbb6ee
Author: Tor Lillqvist <tml at iki.fi>
Date:   Mon Aug 19 12:19:22 2013 +0300

    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

diff --git a/solenv/bin/packimages.pl b/solenv/bin/packimages.pl
index 3e7015b..09e19db 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";
         }
     }
 }


More information about the Libreoffice-commits mailing list