Blame rpm-4.11.x-do-not-filter-ld64.patch
|
Florian Festi |
9ef654 |
From f6771b6722f0df097f9c61fc1b487f6f0ee402e8 Mon Sep 17 00:00:00 2001
|
|
Florian Festi |
9ef654 |
From: Florian Festi <ffesti@redhat.com>
|
|
Florian Festi |
9ef654 |
Date: Tue, 30 Jul 2013 16:35:21 +0200
|
|
Florian Festi |
9ef654 |
Subject: [PATCH] Do not filter ld64.* and ld64-* provides and requires Fixes
|
|
Florian Festi |
9ef654 |
#988373
|
|
Florian Festi |
9ef654 |
|
|
Florian Festi |
9ef654 |
---
|
|
Florian Festi |
9ef654 |
tools/elfdeps.c | 3 ++-
|
|
Florian Festi |
9ef654 |
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
Florian Festi |
9ef654 |
|
|
Florian Festi |
9ef654 |
diff --git a/tools/elfdeps.c b/tools/elfdeps.c
|
|
Florian Festi |
9ef654 |
index 906de10..8679f89 100644
|
|
Florian Festi |
9ef654 |
--- a/tools/elfdeps.c
|
|
Florian Festi |
9ef654 |
+++ b/tools/elfdeps.c
|
|
Florian Festi |
9ef654 |
@@ -52,7 +52,8 @@ static int skipSoname(const char *soname)
|
|
Florian Festi |
9ef654 |
if (!strstr(soname, ".so"))
|
|
Florian Festi |
9ef654 |
return 1;
|
|
Florian Festi |
9ef654 |
|
|
Florian Festi |
9ef654 |
- if (rstreqn(soname, "ld.", 3) || rstreqn(soname, "ld-", 3))
|
|
Florian Festi |
9ef654 |
+ if (rstreqn(soname, "ld.", 3) || rstreqn(soname, "ld-", 3) ||
|
|
Florian Festi |
9ef654 |
+ rstreqn(soname, "ld64.", 3) || rstreqn(soname, "ld64-", 3))
|
|
Florian Festi |
9ef654 |
return 0;
|
|
Florian Festi |
9ef654 |
|
|
Florian Festi |
9ef654 |
if (rstreqn(soname, "lib", 3))
|
|
Florian Festi |
9ef654 |
--
|
|
Florian Festi |
9ef654 |
1.7.11.7
|
|
Florian Festi |
9ef654 |
|