From efcc26fe2b1c0be45924c7434a7a95e311a34e05 Mon Sep 17 00:00:00 2001 From: Matt Ranostay Date: Sun, 17 Sep 2017 00:22:00 +0300 Subject: autogen-native: backport autogen-native POSIX_SHELL fix fix autogen-native: /bin/sh: bad interpreter: Permission denied /bin/sh: ../autoopts/tpl/texi2mdoc: /tmp/yocto-autobuilder/yocto-autobuilder/ yocto-worker/res-custom-pyro-multi-: bad interpreter: Permission denied POSIX_SHELL as shebang doesn't work when it is longer than BINPRM_BUF_SIZE which is 128 usually. So use "/bin/sh". Backport: https://bugzilla.yoctoproject.org/show_bug.cgi?id=11965 Backport: https://github.com/RobertBerger/poky/commit/92a17c9074538a38d3d11c063be624f6c62a6352 Bug-AGL: SPEC-892 Change-Id: I12d08e8a89373390b5798ab6ed8d0ff88d0c03c7 Signed-off-by: Matt Ranostay Reviewed-on: https://gerrit.automotivelinux.org/gerrit/10931 Tested-by: Jenkins Job builder account ci-image-build: Jenkins Job builder account Reviewed-by: Jan-Simon Moeller --- .../autogen/autogen-native_5.18.12.bbappend | 2 ++ ...-autoopts-mk-tpl-config.sh-fix-shell-path.patch | 29 ++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 meta-agl/recipes-devtools/autogen/autogen-native_5.18.12.bbappend create mode 100644 meta-agl/recipes-devtools/autogen/files/0003-autoopts-mk-tpl-config.sh-fix-shell-path.patch (limited to 'meta-agl') diff --git a/meta-agl/recipes-devtools/autogen/autogen-native_5.18.12.bbappend b/meta-agl/recipes-devtools/autogen/autogen-native_5.18.12.bbappend new file mode 100644 index 000000000..a6f697cdb --- /dev/null +++ b/meta-agl/recipes-devtools/autogen/autogen-native_5.18.12.bbappend @@ -0,0 +1,2 @@ +FILESEXTRAPATHS_prepend := "${THISDIR}/files:" +SRC_URI_append = "file://0003-autoopts-mk-tpl-config.sh-fix-shell-path.patch" diff --git a/meta-agl/recipes-devtools/autogen/files/0003-autoopts-mk-tpl-config.sh-fix-shell-path.patch b/meta-agl/recipes-devtools/autogen/files/0003-autoopts-mk-tpl-config.sh-fix-shell-path.patch new file mode 100644 index 000000000..db6b0cdf8 --- /dev/null +++ b/meta-agl/recipes-devtools/autogen/files/0003-autoopts-mk-tpl-config.sh-fix-shell-path.patch @@ -0,0 +1,29 @@ +From df4f5ccc376a630b1a587a8ca3b1f35a305867dd Mon Sep 17 00:00:00 2001 +From: Robert Berger +Date: Wed, 23 Aug 2017 07:19:03 +0000 +Subject: [PATCH] autoopts/mk-tpl-config.sh: fix shell path + +POSIX_SHELL as shebang doesn't work when it is longer than +BINPRM_BUF_SIZE which is 128 usually. So use "/bin/sh". + +Signed-off-by: Robert Berger +--- + autoopts/mk-tpl-config.sh | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/autoopts/mk-tpl-config.sh b/autoopts/mk-tpl-config.sh +index c4708a2..550870e 100755 +--- a/autoopts/mk-tpl-config.sh ++++ b/autoopts/mk-tpl-config.sh +@@ -102,7 +102,7 @@ fix_scripts() { + sed 1d $f + ;; + +- */sh ) echo '#!' ${POSIX_SHELL} ++ */sh ) echo '#!/bin/sh' + sed 1d $f + ;; + +-- +2.7.4 + -- cgit 1.2.3-korg