summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/autogen/autogen
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/autogen/autogen')
-rw-r--r--meta/recipes-devtools/autogen/autogen/0002-autoopts-mk-tpl-config.sh-fix-perl-path.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-devtools/autogen/autogen/0002-autoopts-mk-tpl-config.sh-fix-perl-path.patch b/meta/recipes-devtools/autogen/autogen/0002-autoopts-mk-tpl-config.sh-fix-perl-path.patch
new file mode 100644
index 0000000000..d5fe143ce4
--- /dev/null
+++ b/meta/recipes-devtools/autogen/autogen/0002-autoopts-mk-tpl-config.sh-fix-perl-path.patch
@@ -0,0 +1,32 @@
1From 9f69f3f5ef22bf1bcffb0e651efc260889cfaa46 Mon Sep 17 00:00:00 2001
2From: Robert Yang <liezhi.yang@windriver.com>
3Date: Mon, 13 Mar 2017 20:33:30 -0700
4Subject: [PATCH] autoopts/mk-tpl-config.sh: fix perl path
5
6Use "which perl" as shebang doesn't work when it is longer than
7BINPRM_BUF_SIZE which is 128 usually. So use "/usr/bin/env perl" to
8instead of.
9
10Upstream-Status: Pending
11
12Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
13---
14 autoopts/mk-tpl-config.sh | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/autoopts/mk-tpl-config.sh b/autoopts/mk-tpl-config.sh
18index 093e808..8dfc6dd 100755
19--- a/autoopts/mk-tpl-config.sh
20+++ b/autoopts/mk-tpl-config.sh
21@@ -98,7 +98,7 @@ fix_scripts() {
22 st=`sed 1q $f`
23
24 case "$st" in
25- *perl ) echo '#!' `which perl`
26+ *perl ) echo '#!/usr/bin/env perl'
27 sed 1d $f
28 ;;
29
30--
312.10.2
32