diff options
author | Phil Blundell <pb@reciva.com> | 2009-08-08 12:57:56 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2009-08-08 12:57:56 -0700 |
commit | 5a728f256a542d0105a17778e428c704b6bddb54 (patch) | |
tree | 34dc936925f3d10860e07ca93516f87f9b5c46f0 /recipes/eglibc/eglibc.inc | |
parent | 8ccfc13fefa2d748b038d8ee8ba2cba3265f77a4 (diff) |
eglibc-package.bbclass: Replace hardcoded /lib references
It turns out that eglibc contains a bunch of hard-coded
references to /lib. This patch replaces them with the appropriate
${base_libdir}. Also, the globs in ${libc_baselibs} were a bit too
permissive and would accept, for example, "libc.a" which isn't something
that we want in the main library package. - Phil
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-By: Michael Smith <msmith@cbnco.com>
Diffstat (limited to 'recipes/eglibc/eglibc.inc')
-rw-r--r-- | recipes/eglibc/eglibc.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/eglibc/eglibc.inc b/recipes/eglibc/eglibc.inc index 7863aacc89..1ca0c6264f 100644 --- a/recipes/eglibc/eglibc.inc +++ b/recipes/eglibc/eglibc.inc @@ -3,7 +3,7 @@ HOMEPAGE = "http://www.eglibc.org/home" SECTION = "libs" PRIORITY = "required" LICENSE = "LGPL" -INC_PR = "r4" +INC_PR = "r5" # nptl needs unwind support in gcc, which can't be built without glibc. DEPENDS = "virtual/${TARGET_PREFIX}gcc-intermediate linux-libc-headers" #this leads to circular deps, so lets not add it yet |