A missing space lead to problems if something else was already added to SYSROOT_PREPROCESS_FUNCS.
Signed-off-by: Peter Kjellerstedt <[email protected]> --- We have a bbappend which amongst others inherits useradd, which also appends to SYSROOT_PREPROCESS_FUNCS. What really confuses me though, is that there was no error due to not being able to find the non- existent useradd_sysroot_sstateapache_sysroot_preprocess function... Only reason I noticed that there was a problem was because other packages failed to build because apxs had not been installed in the sysroot as expected. meta-webserver/recipes-httpd/apache2/apache2_2.4.39.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-webserver/recipes-httpd/apache2/apache2_2.4.39.bb b/meta-webserver/recipes-httpd/apache2/apache2_2.4.39.bb index d58ccb8f2..c6961ef9b 100644 --- a/meta-webserver/recipes-httpd/apache2/apache2_2.4.39.bb +++ b/meta-webserver/recipes-httpd/apache2/apache2_2.4.39.bb @@ -147,7 +147,7 @@ do_install_append_class-native() { install -m 755 server/gen_test_char ${D}${bindir} } -SYSROOT_PREPROCESS_FUNCS_append_class-target = "apache_sysroot_preprocess" +SYSROOT_PREPROCESS_FUNCS_append_class-target = " apache_sysroot_preprocess" apache_sysroot_preprocess() { install -d ${SYSROOT_DESTDIR}${bindir_crossscripts} -- 2.12.0 -- _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-devel
