From d78921e91ea1caf0154d544496a8aeabc2ec543d Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Tue, 1 Mar 2016 08:54:38 +0000 Subject: image-prelink: use STAGING_*_NATIVE variables Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/classes/image-prelink.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/classes/image-prelink.bbclass b/meta/classes/image-prelink.bbclass index e153f47881..4157df021a 100644 --- a/meta/classes/image-prelink.bbclass +++ b/meta/classes/image-prelink.bbclass @@ -19,7 +19,7 @@ prelink_image () { # We need a prelink conf on the filesystem, add one if it's missing if [ ! -e ${IMAGE_ROOTFS}${sysconfdir}/prelink.conf ]; then - cp ${STAGING_DIR_NATIVE}${sysconfdir_native}/prelink.conf \ + cp ${STAGING_ETCDIR_NATIVE}/prelink.conf \ ${IMAGE_ROOTFS}${sysconfdir}/prelink.conf dummy_prelink_conf=true; else @@ -36,7 +36,7 @@ prelink_image () { dynamic_loader=$(linuxloader) # prelink! - ${STAGING_DIR_NATIVE}${sbindir_native}/prelink --root ${IMAGE_ROOTFS} -amR -N -c ${sysconfdir}/prelink.conf --dynamic-linker $dynamic_loader + ${STAGING_SBINDIR_NATIVE}/prelink --root ${IMAGE_ROOTFS} -amR -N -c ${sysconfdir}/prelink.conf --dynamic-linker $dynamic_loader # Remove the prelink.conf if we had to add it. if [ "$dummy_prelink_conf" = "true" ]; then -- cgit 1.2.3-korg