summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2013-03-10 15:05:18 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-23 11:44:13 +0000
commitc2fd9a1e0f16aff7fa3f956c1e942aff0c66b20e (patch)
treee2cbd602210df8a916f7edcb1de2b39a0668226a
parent619e1df31d246f4779c1ef834dddd81e9242555c (diff)
downloadpoky-c2fd9a1e0f16aff7fa3f956c1e942aff0c66b20e.tar.gz
sudo: Compile mksigname and mksiglist for build host
cross compiling sudo doesnt work well since it uses mksigname and mksiglist to generate C sources which are then used in sudo build itself. With this patch now we make sure those hosttools are compiled for build machine. It fixes the build failures like ./mksigname > signame.c /bin/sh: ./mksigname: cannot execute binary file make[1]: *** [signame.c] Error 126 (From OE-Core rev: 2ce5b1364ef6eb276352f7170d23dc3492c779f6) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-extended/sudo/sudo.inc5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-extended/sudo/sudo.inc b/meta/recipes-extended/sudo/sudo.inc
index 7721cd57a1..9427b570a8 100644
--- a/meta/recipes-extended/sudo/sudo.inc
+++ b/meta/recipes-extended/sudo/sudo.inc
@@ -21,6 +21,11 @@ do_configure_prepend () {
21 fi 21 fi
22} 22}
23 23
24# mksigname/mksiglist are used on build host to generate source files
25do_compile_prepend () {
26 oe_runmake CC=$BUILD_CC CPPFLAGS="$BUILD_CPPFLAGS -I../include -I../" -C compat mksigname mksiglist
27}
28
24# Explicitly create ${localstatedir}/lib before do_install to ensure 29# Explicitly create ${localstatedir}/lib before do_install to ensure
25# the directory is accessible by all users. Otherwise the mkinstalldirs 30# the directory is accessible by all users. Otherwise the mkinstalldirs
26# script (from sudo) will recursively create ${localstatedir}/lib/sudo 31# script (from sudo) will recursively create ${localstatedir}/lib/sudo