autogen-native: backport autogen-native POSIX_SHELL fix 31/10931/2
authorMatt Ranostay <matt.ranostay@konsulko.com>
Sat, 16 Sep 2017 21:22:00 +0000 (00:22 +0300)
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>
Sun, 17 Sep 2017 17:49:29 +0000 (17:49 +0000)
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 <matt.ranostay@konsulko.com>
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/10931
Tested-by: Jenkins Job builder account <agl-jobbuilder@automotivelinux.org>
ci-image-build: Jenkins Job builder account <agl-jobbuilder@automotivelinux.org>
Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
meta-agl/recipes-devtools/autogen/autogen-native_5.18.12.bbappend [new file with mode: 0644]
meta-agl/recipes-devtools/autogen/files/0003-autoopts-mk-tpl-config.sh-fix-shell-path.patch [new file with mode: 0644]

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 (file)
index 0000000..a6f697c
--- /dev/null
@@ -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 (file)
index 0000000..db6b0cd
--- /dev/null
@@ -0,0 +1,29 @@
+From df4f5ccc376a630b1a587a8ca3b1f35a305867dd Mon Sep 17 00:00:00 2001
+From: Robert Berger <robert.berger@ReliableEmbeddedSystems.com>
+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 <robert.berger@ReliableEmbeddedSystems.com>
+---
+ 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
+