From: Michael Tremer Date: Thu, 22 Dec 2011 00:07:36 +0000 (+0100) Subject: Skip python shared objects in provides lists. X-Git-Tag: 0.9.20~33^2~9^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b4216832dc9d7bf151c2c548e7d7082b01d4db0;p=pakfire.git Skip python shared objects in provides lists. --- diff --git a/tools/find-provides b/tools/find-provides index 1b8f92ad0..64603286d 100755 --- a/tools/find-provides +++ b/tools/find-provides @@ -17,6 +17,9 @@ while read file; do */lib/ld.so) # Just ignore this file. ;; + */usr/lib*/python*/*.so) + # Do not show python shared objects in provides list. + ;; *.so*) binary_files="${binary_files} ${file}" ;;