summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/libtool
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-11-08 21:33:53 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-11-10 11:51:18 +0000
commit5d3860f4a8abb8e95442b04f8b84a333af362fcd (patch)
tree16e4b98abf972410eef0175aa09ef2dd918e0016 /meta/recipes-devtools/libtool
parentd9740cdcd7d4b19eccae27665d9ce92632d6349a (diff)
downloadpoky-5d3860f4a8abb8e95442b04f8b84a333af362fcd.tar.gz
Allow use of dash as /bin/sh
We've had the check for dash as /bin/sh for a long time. Dash has been around long enough now that most major issues have been identified and fixed from build perspective. This patch fixes a bashism in the openjade-native recipe. It also adjusts libtool so that the header at the script is used and not the value of $SHELL. This is because many Makefiles change $SHELL so dash can get used to execute what is otherwise configured as a bash shell script. Since we don't need to execute scripts this way on any system I'm aware of us building upon, the simplest fix is just to remove $SHELL. With these two changes the dash check can be removed and we can allow builds with dash as /bin/sh (From OE-Core rev: 07ded02ffd37b4fe60a6210dbf56490ea306f0b6) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> [Note: I know I need to add the description of the libtool change above into the prefix.patch]
Diffstat (limited to 'meta/recipes-devtools/libtool')
-rw-r--r--meta/recipes-devtools/libtool/libtool/prefix.patch11
1 files changed, 10 insertions, 1 deletions
diff --git a/meta/recipes-devtools/libtool/libtool/prefix.patch b/meta/recipes-devtools/libtool/libtool/prefix.patch
index 1b20324715..e6eca1fe02 100644
--- a/meta/recipes-devtools/libtool/libtool/prefix.patch
+++ b/meta/recipes-devtools/libtool/libtool/prefix.patch
@@ -8,6 +8,15 @@ Originally by: RP
8Updated: Date: 2010/06/28 8Updated: Date: 2010/06/28
9Nitin A Kamble <nitin.a.kamble@intel.com> 9Nitin A Kamble <nitin.a.kamble@intel.com>
10 10
11It also adjusts libtool so that the header at the script is used for
12script execution and not thevalue of $SHELL. This is because many
13Makefiles change $SHELL so dash can get used to execute what is
14otherwise configured as a bash shell script. Since we don't need to
15execute scipts this way on any system I'm aware of us building upon,
16the simplest fix is just to remove $SHELL.
17
18Updated: Date: 2011/11/09
19RP
11 20
12Index: libtool-2.4/libltdl/m4/libtool.m4 21Index: libtool-2.4/libltdl/m4/libtool.m4
13=================================================================== 22===================================================================
@@ -18,7 +27,7 @@ Index: libtool-2.4/libltdl/m4/libtool.m4
18 27
19 # Always use our own libtool. 28 # Always use our own libtool.
20-LIBTOOL='$(SHELL) $(top_builddir)/libtool' 29-LIBTOOL='$(SHELL) $(top_builddir)/libtool'
21+LIBTOOL='$(SHELL) $(top_builddir)' 30+LIBTOOL='$(top_builddir)'
22+LIBTOOL="$LIBTOOL/${host_alias}-libtool" 31+LIBTOOL="$LIBTOOL/${host_alias}-libtool"
23 AC_SUBST(LIBTOOL)dnl 32 AC_SUBST(LIBTOOL)dnl
24 33