summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/autogen/autogen-native_5.18.12.bb
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2017-04-06 03:05:55 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-04-10 23:00:43 +0100
commit607bc5958816624731ed2258dd4cdaef7d20d5df (patch)
tree301fb6917e291aeec2216f4423b677affd4c747b /meta/recipes-devtools/autogen/autogen-native_5.18.12.bb
parent7daf525d3772636430818c0e33befd97f03e88c6 (diff)
downloadpoky-607bc5958816624731ed2258dd4cdaef7d20d5df.tar.gz
autogen-native: fix POSIX_SHELL and perl
The shebang's length is usually 128 as defined in /usr/include/linux/binfmts.h: #define BINPRM_BUF_SIZE 128 So there would be errors when /path/to/hosttools/perl is longer than 128. This patch fixes the problem when POSIX_SHELL and perl are used as the interpreters. (From OE-Core rev: 055838283349530e6f60f4169d9190aa5b59b190) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/autogen/autogen-native_5.18.12.bb')
-rw-r--r--meta/recipes-devtools/autogen/autogen-native_5.18.12.bb3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-devtools/autogen/autogen-native_5.18.12.bb b/meta/recipes-devtools/autogen/autogen-native_5.18.12.bb
index 0004389b11..853477cf7c 100644
--- a/meta/recipes-devtools/autogen/autogen-native_5.18.12.bb
+++ b/meta/recipes-devtools/autogen/autogen-native_5.18.12.bb
@@ -13,6 +13,7 @@ SRC_URI = "${GNU_MIRROR}/autogen/rel${PV}/autogen-${PV}.tar.gz \
13 file://mk-tpl-config.sh-force-exit-value-to-be-0-in-subproc.patch \ 13 file://mk-tpl-config.sh-force-exit-value-to-be-0-in-subproc.patch \
14 file://fix-script-err-when-processing-libguile.patch \ 14 file://fix-script-err-when-processing-libguile.patch \
15 file://0001-config-libopts.m4-regenerate-it-from-config-libopts..patch \ 15 file://0001-config-libopts.m4-regenerate-it-from-config-libopts..patch \
16 file://0002-autoopts-mk-tpl-config.sh-fix-perl-path.patch \
16" 17"
17 18
18SRC_URI[md5sum] = "551d15ccbf5b5fc5658da375d5003389" 19SRC_URI[md5sum] = "551d15ccbf5b5fc5658da375d5003389"
@@ -30,6 +31,8 @@ inherit autotools texinfo native pkgconfig
30export GUILE_LOAD_PATH = "${STAGING_DATADIR_NATIVE}/guile/2.0" 31export GUILE_LOAD_PATH = "${STAGING_DATADIR_NATIVE}/guile/2.0"
31export GUILE_LOAD_COMPILED_PATH = "${STAGING_LIBDIR_NATIVE}/guile/2.0/ccache" 32export GUILE_LOAD_COMPILED_PATH = "${STAGING_LIBDIR_NATIVE}/guile/2.0/ccache"
32 33
34export POSIX_SHELL = "/usr/bin/env sh"
35
33do_install_append () { 36do_install_append () {
34 create_wrapper ${D}/${bindir}/autogen \ 37 create_wrapper ${D}/${bindir}/autogen \
35 GUILE_LOAD_PATH=${STAGING_DATADIR_NATIVE}/guile/2.0 \ 38 GUILE_LOAD_PATH=${STAGING_DATADIR_NATIVE}/guile/2.0 \