]> git.ipfire.org Git - pakfire.git/commitdiff
find-requires: Remove things that have been implemented elsewhere
authorMichael Tremer <michael.tremer@ipfire.org>
Fri, 3 Jan 2025 08:53:26 +0000 (08:53 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Fri, 3 Jan 2025 08:53:26 +0000 (08:53 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/scripts/find-requires

index 268730e1f7000ff687da1fda2b3a4403a16ce425..3fcbfd478d11a858b1e3cc882cb257a4ed2699d5 100644 (file)
@@ -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