From 3598810ec8e9f345b9e95ebc5eb5d877afe96bed Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 8 Jan 2012 16:43:30 +0100 Subject: [PATCH] find-requires: Skip all debuginfo files. --- tools/find-requires | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/find-requires b/tools/find-requires index fb5721ac3..52b66511a 100755 --- a/tools/find-requires +++ b/tools/find-requires @@ -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}" -- 2.39.5