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.27.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.27.bb')
-rw-r--r-- | recipes/linux/linux_2.6.27.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes/linux/linux_2.6.27.bb b/recipes/linux/linux_2.6.27.bb index 5ce50c978c..b5c67e2dbf 100644 --- a/recipes/linux/linux_2.6.27.bb +++ b/recipes/linux/linux_2.6.27.bb @@ -77,10 +77,10 @@ SRC_URI_append_ts72xx = "\ " # 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 } |