diff options
author | Khem Raj <raj.khem@gmail.com> | 2010-07-01 15:48:31 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2010-07-01 15:52:23 -0700 |
commit | d3c1b02dd6e4d5a128477ea594eb2d0c03d66b08 (patch) | |
tree | 068c9bada0f9019f9812c7ec637d11e08a57ab3c /recipes/klibc/klibc_1.5.18.bb | |
parent | 9e7262cb51128e8d276176568b499b880fb2a01b (diff) |
klibc_1.5.18: Fix the build for x86 on newer kernels.
* We were setting KLIBCARCH to match kernel arch
while this let klibc build, it did not configure
in right syscalls because klibc still use 'i386'
the patch tells klibc to look for right places in
kernel tree based on arch and we can stop synthesizing
KLIBCARCH to be same as kernel arch.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'recipes/klibc/klibc_1.5.18.bb')
-rw-r--r-- | recipes/klibc/klibc_1.5.18.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/klibc/klibc_1.5.18.bb b/recipes/klibc/klibc_1.5.18.bb index 694bf5849b..cf69b4398c 100644 --- a/recipes/klibc/klibc_1.5.18.bb +++ b/recipes/klibc/klibc_1.5.18.bb @@ -1,3 +1,3 @@ require klibc.inc -require klibc_${PV}.inc -PR = "${INC_PR}.1" +require klibc-${PV}.inc +PR = "${INC_PR}.2" |