summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/libtool/libtool/avoid_absolute_paths_for_general_utils.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/libtool/libtool/avoid_absolute_paths_for_general_utils.patch')
-rw-r--r--meta/recipes-devtools/libtool/libtool/avoid_absolute_paths_for_general_utils.patch37
1 files changed, 37 insertions, 0 deletions
diff --git a/meta/recipes-devtools/libtool/libtool/avoid_absolute_paths_for_general_utils.patch b/meta/recipes-devtools/libtool/libtool/avoid_absolute_paths_for_general_utils.patch
new file mode 100644
index 0000000000..f158171ef7
--- /dev/null
+++ b/meta/recipes-devtools/libtool/libtool/avoid_absolute_paths_for_general_utils.patch
@@ -0,0 +1,37 @@
1On some distro the path of utils like sed, grep etc are different than the
2buildhost system.
3 This was causing runtime issue while running libtoolize from the
4libtool-nativesdk package.
5 This patch takes out the absolute paths of these utils, and put
6responsibility on the end-user to set correct paths for these utilities to be
7found out.
8
9Nitin A Kamble <nitin.a.kamble@intel.com>
102011/02/18
11
12
13Index: libtool-2.4/libltdl/config/general.m4sh
14===================================================================
15--- libtool-2.4.orig/libltdl/config/general.m4sh 2010-08-31 23:02:45.000000000 -0700
16+++ libtool-2.4/libltdl/config/general.m4sh 2011-02-18 09:59:09.482038240 -0800
17@@ -45,15 +45,15 @@
18 M4SH_VERBATIM([[
19 : ${CP="cp -f"}
20 test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'}
21-: ${EGREP="@EGREP@"}
22-: ${FGREP="@FGREP@"}
23-: ${GREP="@GREP@"}
24-: ${LN_S="@LN_S@"}
25+: ${EGREP="egrep"}
26+: ${FGREP="fgrep"}
27+: ${GREP="grep"}
28+: ${LN_S="ln -s"}
29 : ${MAKE="make"}
30 : ${MKDIR="mkdir"}
31 : ${MV="mv -f"}
32 : ${RM="rm -f"}
33-: ${SED="@SED@"}
34+: ${SED="sed"}
35 : ${SHELL="${CONFIG_SHELL-/bin/sh}"}
36 : ${Xsed="$SED -e 1s/^X//"}
37