]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
QA libs-location: Do not print error message when /lib is not existent.
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 17 Feb 2010 21:25:42 +0000 (22:25 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 17 Feb 2010 21:25:42 +0000 (22:25 +0100)
tools/quality-agent.d/003-libs-location

index 88947a69c2004b0a3e84bc0f907a3bae02fd8e42..09a4280b1e4729124b5e5feba7ce19657aa5a723 100755 (executable)
@@ -7,7 +7,7 @@
 log "Checking correct installation of libraries"
 
 failed=0
-for lib in $(find ${BUILDROOT}/lib -type f -name "lib*.so.*"); do
+for lib in $(find ${BUILDROOT}/lib -type f -name "lib*.so.*" 2>/dev/null); do
        lib=${lib##*/}
        lib=${lib%%.so*}