From 3a8b8812ac1b9a724f11b2011f8ee3416ac3d4df Mon Sep 17 00:00:00 2001 From: Konrad Scherer Date: Mon, 6 Oct 2014 09:50:12 -0500 Subject: linuxdoc-tools-native: Makedoc.sh uses /tmp and fails w/ noexec mount The Makedoc.sh script uses the following line to set TMPDIR export TMPDIR=`mktemp -d ${TMPDIR:-/tmp}/ldt.XXXXXXXXXX`; and then later in the script: chmod u+x $TMPDIR/linuxdoc Since TMPDIR is not set the script will default to /tmp and if /tmp is set to noexec (which is becoming more common), the chmod call fails. Signed-off-by: Konrad Scherer Signed-off-by: Mark Hatle Signed-off-by: Richard Purdie --- meta/recipes-devtools/linuxdoc-tools/linuxdoc-tools-native_0.9.69.bb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meta/recipes-devtools/linuxdoc-tools/linuxdoc-tools-native_0.9.69.bb b/meta/recipes-devtools/linuxdoc-tools/linuxdoc-tools-native_0.9.69.bb index ed6ab738a8..a8a90fc82e 100644 --- a/meta/recipes-devtools/linuxdoc-tools/linuxdoc-tools-native_0.9.69.bb +++ b/meta/recipes-devtools/linuxdoc-tools/linuxdoc-tools-native_0.9.69.bb @@ -19,3 +19,7 @@ inherit autotools-brokensep native do_configure () { oe_runconf } + +do_install() { + oe_runmake 'DESTDIR=${D}' 'TMPDIR=${T}' install +} -- cgit 1.2.3-korg