diff options
author | Konrad Scherer <Konrad.Scherer@windriver.com> | 2014-10-06 09:50:12 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-10-06 16:03:13 +0100 |
commit | 8ef4dedbfd75e231aeb96e605e85329fb23be815 (patch) | |
tree | bb106a90e12bf0e74b3b68e1f3d39383b5a2c643 /meta/recipes-devtools/linuxdoc-tools | |
parent | 533a852eddb9a5e77a15001756f03b929a1d0a0b (diff) | |
download | poky-8ef4dedbfd75e231aeb96e605e85329fb23be815.tar.gz |
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.
(From OE-Core rev: 3a8b8812ac1b9a724f11b2011f8ee3416ac3d4df)
Signed-off-by: Konrad Scherer <Konrad.Scherer@windriver.com>
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/linuxdoc-tools')
-rw-r--r-- | meta/recipes-devtools/linuxdoc-tools/linuxdoc-tools-native_0.9.69.bb | 4 |
1 files changed, 4 insertions, 0 deletions
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 | |||
19 | do_configure () { | 19 | do_configure () { |
20 | oe_runconf | 20 | oe_runconf |
21 | } | 21 | } |
22 | |||
23 | do_install() { | ||
24 | oe_runmake 'DESTDIR=${D}' 'TMPDIR=${T}' install | ||
25 | } | ||