From: Michael Tremer Date: Fri, 3 Jan 2025 08:53:26 +0000 (+0000) Subject: find-requires: Remove things that have been implemented elsewhere X-Git-Tag: 0.9.30~567 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47e999ddcea58f074ba9d819eac0c18556ca4fe2;p=pakfire.git find-requires: Remove things that have been implemented elsewhere Signed-off-by: Michael Tremer --- diff --git a/src/scripts/find-requires b/src/scripts/find-requires index 268730e1f..3fcbfd478 100644 --- a/src/scripts/find-requires +++ b/src/scripts/find-requires @@ -158,12 +158,6 @@ main() { # Process special files case "${file}" in - # pkg-config - *.pc) - # Query requires of the package - pkgconfig_requires "${path}" - ;; - # Python /usr/lib*/python*/*) # Fall through for all python files @@ -190,11 +184,6 @@ main() { # Is this an ELF file? if file -L "${path}" 2>/dev/null | grep -q "ELF"; then - # Find the ELF interpreter - if ! find_elf_interpreter "${path}" "${filelist}"; then - return 1 - fi - # Find weak symbols if ! find_weak_symbols "${path}"; then return 1