diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2023-02-08 01:22:36 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-02-24 16:41:51 +0000 |
commit | 551595a3f3f6a8783a2ca61745a2174fa2b34d63 (patch) | |
tree | 3ac3412a03f02eaa2e0aa0ff87115dfaeb1218a2 | |
parent | a707115995de96036ea6546f3fcb52d74a28ab5f (diff) | |
download | poky-551595a3f3f6a8783a2ca61745a2174fa2b34d63.tar.gz |
ffmpeg: fix configure failure on noexec /tmp host
The configure scripts uses /tmp to execute some generated files.
If /tmp is noexec, then we meet the following error.
| Unable to create and execute files in /tmp. Set the TMPDIR environment
| variable to another directory and make sure that it is not mounted noexec.
| Sanity test failed.
(From OE-Core rev: 20231fece4b7f15bae574d89a362506f39cfd967)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 6099b88c4decb285fd3519d5565909c15d935030)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-multimedia/ffmpeg/ffmpeg_5.1.2.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/ffmpeg/ffmpeg_5.1.2.bb b/meta/recipes-multimedia/ffmpeg/ffmpeg_5.1.2.bb index 06eca4fefe..7970740254 100644 --- a/meta/recipes-multimedia/ffmpeg/ffmpeg_5.1.2.bb +++ b/meta/recipes-multimedia/ffmpeg/ffmpeg_5.1.2.bb | |||
@@ -141,6 +141,8 @@ LDFLAGS:append:x86 = "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', ' -f | |||
141 | EXTRA_OEMAKE = "V=1" | 141 | EXTRA_OEMAKE = "V=1" |
142 | 142 | ||
143 | do_configure() { | 143 | do_configure() { |
144 | export TMPDIR="${B}/tmp" | ||
145 | mkdir -p ${B}/tmp | ||
144 | ${S}/configure ${EXTRA_OECONF} | 146 | ${S}/configure ${EXTRA_OECONF} |
145 | } | 147 | } |
146 | 148 | ||