diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-01-08 14:43:32 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-01-08 14:43:32 +0000 |
commit | 7c628949589d6084ca091a39688dfa14e759e4db (patch) | |
tree | b3c6a090d386741b7ae5ab1b03f8e57451abbc1f /meta/classes/module.bbclass | |
parent | d40c8607627bb683a3a49005749934e7d241ca6b (diff) | |
download | poky-7c628949589d6084ca091a39688dfa14e759e4db.tar.gz |
module*.bbclass: set AR to KERNEL_AR during building of kernel modules (from Poky trunk r3422)
git-svn-id: https://svn.o-hand.com/repos/poky/branches/blinky@3423 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/module.bbclass')
-rw-r--r-- | meta/classes/module.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/module.bbclass b/meta/classes/module.bbclass index f55b89c4da..d3783a4bba 100644 --- a/meta/classes/module.bbclass +++ b/meta/classes/module.bbclass | |||
@@ -26,6 +26,7 @@ module_do_compile() { | |||
26 | KERNEL_SRC=${STAGING_KERNEL_DIR} \ | 26 | KERNEL_SRC=${STAGING_KERNEL_DIR} \ |
27 | KERNEL_VERSION=${KERNEL_VERSION} \ | 27 | KERNEL_VERSION=${KERNEL_VERSION} \ |
28 | CC="${KERNEL_CC}" LD="${KERNEL_LD}" \ | 28 | CC="${KERNEL_CC}" LD="${KERNEL_LD}" \ |
29 | AR="${KERNEL_AR}" \ | ||
29 | ${MAKE_TARGETS} | 30 | ${MAKE_TARGETS} |
30 | } | 31 | } |
31 | 32 | ||