diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2012-01-03 14:59:30 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-04 11:56:42 +0000 |
commit | f212c81c7a481d812344abbf20a727fff85175bc (patch) | |
tree | 7c3922eb764dac42c0478e99c4a55e8d9c45b91e /meta | |
parent | 381a4a2984d0cceb81d7e2635fa17c46ade59364 (diff) | |
download | poky-f212c81c7a481d812344abbf20a727fff85175bc.tar.gz |
prelink: also look at nonstandard lib paths
Prelinking for x32 image showed that it was ignoring libraries
located at locations like /usr/libx32. Like that mips n32 has
library locations set as lib32
This commit modifies prelink.conf to look at libraries also
located at libx32 & lib32 locations.
Thanks to Mark Hatle for suggesting the fix.
(From OE-Core rev: c02b9de25b405c81da0f7bebd07423e8cee14eb7)
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/prelink/prelink/prelink.conf | 8 | ||||
-rw-r--r-- | meta/recipes-devtools/prelink/prelink_git.bb | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/meta/recipes-devtools/prelink/prelink/prelink.conf b/meta/recipes-devtools/prelink/prelink/prelink.conf index ed30c286f2..562f23c59d 100644 --- a/meta/recipes-devtools/prelink/prelink/prelink.conf +++ b/meta/recipes-devtools/prelink/prelink/prelink.conf | |||
@@ -12,7 +12,7 @@ | |||
12 | -l /usr/bin | 12 | -l /usr/bin |
13 | -l /usr/X11R6/bin | 13 | -l /usr/X11R6/bin |
14 | -l /usr/games | 14 | -l /usr/games |
15 | -l /usr/local/lib{,64} | 15 | -l /usr/local/lib{,32,64,x32} |
16 | -l /lib{,64} | 16 | -l /lib{,32,64,x32} |
17 | -l /usr/lib{,64} | 17 | -l /usr/lib{,32,64,x32} |
18 | -l /usr/X11R6/lib{,64} | 18 | -l /usr/X11R6/lib{,32,64,x32} |
diff --git a/meta/recipes-devtools/prelink/prelink_git.bb b/meta/recipes-devtools/prelink/prelink_git.bb index 31c22efe51..17141e9b06 100644 --- a/meta/recipes-devtools/prelink/prelink_git.bb +++ b/meta/recipes-devtools/prelink/prelink_git.bb | |||
@@ -10,7 +10,7 @@ LICENSE = "GPLv2" | |||
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=c93c0550bd3173f4504b2cbd8991e50b" | 10 | LIC_FILES_CHKSUM = "file://COPYING;md5=c93c0550bd3173f4504b2cbd8991e50b" |
11 | SRCREV = "bb1b660c5e3859b6c5a2ac8d739713e9989a4dd7" | 11 | SRCREV = "bb1b660c5e3859b6c5a2ac8d739713e9989a4dd7" |
12 | PV = "1.0+git${SRCPV}" | 12 | PV = "1.0+git${SRCPV}" |
13 | PR = "r7" | 13 | PR = "r8" |
14 | 14 | ||
15 | # | 15 | # |
16 | # The cron script attempts to re-prelink the system daily -- on | 16 | # The cron script attempts to re-prelink the system daily -- on |