summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorFlorian Festi <ffesti@redhat.com>2013-07-30 16:35:21 +0200
committerFlorian Festi <ffesti@redhat.com>2013-07-30 16:35:21 +0200
commitf6771b6722f0df097f9c61fc1b487f6f0ee402e8 (patch)
tree92b040db86a6b37fb93f97b6532b9313ef097728 /tools
parent88d24b14a8e0e33e768cb74a3487acf0925b012a (diff)
downloadrpm-f6771b6722f0df097f9c61fc1b487f6f0ee402e8.tar.gz
Do not filter ld64.* and ld64-* provides and requires
Fixes #988373
Diffstat (limited to 'tools')
-rw-r--r--tools/elfdeps.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/elfdeps.c b/tools/elfdeps.c
index 906de10c7..8679f89ee 100644
--- a/tools/elfdeps.c
+++ b/tools/elfdeps.c
@@ -52,7 +52,8 @@ static int skipSoname(const char *soname)
if (!strstr(soname, ".so"))
return 1;
- if (rstreqn(soname, "ld.", 3) || rstreqn(soname, "ld-", 3))
+ if (rstreqn(soname, "ld.", 3) || rstreqn(soname, "ld-", 3) ||
+ rstreqn(soname, "ld64.", 3) || rstreqn(soname, "ld64-", 3))
return 0;
if (rstreqn(soname, "lib", 3))