From 39ff73152673477e499b39ee1e41eb24625f74ad Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Wed, 8 Mar 2017 17:24:14 +0000 Subject: [PATCH] chkconfig-alternatives-native: fix obey_variables This postfunc assumes it's run from S, whereas that seems not to always be the case in practice. Explicitly define the full path of the file we wish to sed. (From OE-Core rev: 6486dd71c6c9977e5d67fd803d1bd85001654b5a) Signed-off-by: Joshua Lock Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- .../chkconfig/chkconfig-alternatives-native_1.3.59.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-extended/chkconfig/chkconfig-alternatives-native_1.3.59.bb b/meta/recipes-extended/chkconfig/chkconfig-alternatives-native_1.3.59.bb index c0f7f1674fb..87fa8eb6055 100644 --- a/meta/recipes-extended/chkconfig/chkconfig-alternatives-native_1.3.59.bb +++ b/meta/recipes-extended/chkconfig/chkconfig-alternatives-native_1.3.59.bb @@ -21,7 +21,7 @@ inherit native # into the sysroot, as we may use them to construct the rootfs. As such, we # only adjust the paths to match the metadata for the target, not native. obey_variables () { - sed -i 's,ALTERNATIVES_ROOT,OPKG_OFFLINE_ROOT,' alternatives.c + sed -i 's,ALTERNATIVES_ROOT,OPKG_OFFLINE_ROOT,' ${S}/alternatives.c } do_compile () { -- 2.47.2