diff options
author | koen.kooi@gmail.com <koen.kooi@gmail.com> | 2010-04-15 00:35:49 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-04-16 14:26:17 +0200 |
commit | 17e346ad3489908895177caf63c620eeff6d9a97 (patch) | |
tree | 33d080e81edd58503f1e830e22fdbef90b595787 /recipes/linux/linux_2.6.26.bb | |
parent | d4fb2f522254c1a955cb1868f13e9ee636997588 (diff) |
recipes/linux: convert users of do_stage_append to new style staging
Acked-by: Graeme Gregory <dp@xora.org.uk>
Acked-by: Philip Balister <philip@balister.org>
Signed-off-by: Koen Kooi <koen@openembedded.org>
Diffstat (limited to 'recipes/linux/linux_2.6.26.bb')
-rw-r--r-- | recipes/linux/linux_2.6.26.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes/linux/linux_2.6.26.bb b/recipes/linux/linux_2.6.26.bb index 933664e5ea..6089f47bf5 100644 --- a/recipes/linux/linux_2.6.26.bb +++ b/recipes/linux/linux_2.6.26.bb @@ -40,10 +40,10 @@ SRC_URI_append_mpc8313e-rdb = "\ SRC_URI_append_topas910 = "http://www.bplan-gmbh.org/data/toshiba/topas/linux/2.6.26.5/patch_2.6.26.5_topas910.bz2;patch=1;name=topaspatch" # see http://bugzilla.kernel.org/show_bug.cgi?id=11143 -do_stage_append() { +do_install_append() { if [ -f arch/${ARCH}/lib/crtsavres.o ]; then - mkdir -p ${STAGING_KERNEL_DIR}/arch/${ARCH}/lib - cp -a arch/${ARCH}/lib/crtsavres.o ${STAGING_KERNEL_DIR}/arch/${ARCH}/lib/ + mkdir -p $kerneldir/arch/${ARCH}/lib + cp -a arch/${ARCH}/lib/crtsavres.o $kerneldir/arch/${ARCH}/lib/ fi } |