]> git.ipfire.org Git - pakfire.git/commitdiff
find-requires: Skip all debuginfo files.
authorMichael Tremer <michael.tremer@ipfire.org>
Sun, 8 Jan 2012 15:43:30 +0000 (16:43 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 8 Jan 2012 15:43:30 +0000 (16:43 +0100)
tools/find-requires

index fb5721ac32f63087cf57af2265c1269d7335ec2a..52b66511aac3b19b28debff4dbe4572e85abac7e 100755 (executable)
@@ -23,6 +23,9 @@ pkgconfig_files=
 # Walk through all file files and see what we have got here.
 while read file; do
        case "${file}" in
+               */usr/lib/debug/*|*/usr/src/debug/*)
+                       # Skip all debuginfo files.
+                       ;;
                *.pc)
                        # Find all pkg-config files.
                        pkgconfig_files="${pkgconfig_files} ${file}"