diff options
author | Qing He <qing.he@intel.com> | 2011-04-21 14:10:45 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-04 00:54:39 +0100 |
commit | d41c3a8726392168e52d3609a475c3de14e47290 (patch) | |
tree | 427daeaba56c446a6fa009c2454131d8deca5ba1 /meta/recipes-support/attr/files/no-fixed-prog-path.patch | |
parent | f8e02f31a74d0c80d4056ab945819809f745b47b (diff) | |
download | poky-d41c3a8726392168e52d3609a475c3de14e47290.tar.gz |
attr: upgrade to version 2.4.46
from 2.4.44
- remove the backported patch that is now in the tarball
- prog path issue has also been fixed in the upstream
(From OE-Core rev: b56ab842a8c0bc183f839edc035dc89399d783c3)
Signed-off-by: Qing He <qing.he@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/attr/files/no-fixed-prog-path.patch')
-rw-r--r-- | meta/recipes-support/attr/files/no-fixed-prog-path.patch | 99 |
1 files changed, 0 insertions, 99 deletions
diff --git a/meta/recipes-support/attr/files/no-fixed-prog-path.patch b/meta/recipes-support/attr/files/no-fixed-prog-path.patch deleted file mode 100644 index 88d9c0e0de..0000000000 --- a/meta/recipes-support/attr/files/no-fixed-prog-path.patch +++ /dev/null | |||
@@ -1,99 +0,0 @@ | |||
1 | Not using fixed utility path, but respect $PATH | ||
2 | |||
3 | 10/09/2010 - created by Qing He <qing.he@intel.com> | ||
4 | |||
5 | diff --git a/m4/package_utilies.m4 b/m4/package_utilies.m4 | ||
6 | index 165db35..0afe578 100644 | ||
7 | --- a/m4/package_utilies.m4 | ||
8 | +++ b/m4/package_utilies.m4 | ||
9 | @@ -37,22 +37,22 @@ AC_DEFUN([AC_PACKAGE_UTILITIES], | ||
10 | AC_PACKAGE_NEED_UTILITY($1, "$cc", cc, [C compiler]) | ||
11 | |||
12 | if test -z "$MAKE"; then | ||
13 | - AC_PATH_PROG(MAKE, gmake,, /usr/bin:/usr/local/bin:/usr/freeware/bin) | ||
14 | + AC_PATH_PROG(MAKE, gmake) | ||
15 | fi | ||
16 | if test -z "$MAKE"; then | ||
17 | - AC_PATH_PROG(MAKE, make,, /usr/bin) | ||
18 | + AC_PATH_PROG(MAKE, make) | ||
19 | fi | ||
20 | make=$MAKE | ||
21 | AC_SUBST(make) | ||
22 | AC_PACKAGE_NEED_UTILITY($1, "$make", make, [GNU make]) | ||
23 | |||
24 | if test -z "$TAR"; then | ||
25 | - AC_PATH_PROG(TAR, tar,, /usr/freeware/bin:/bin:/usr/local/bin:/usr/bin) | ||
26 | + AC_PATH_PROG(TAR, tar) | ||
27 | fi | ||
28 | tar=$TAR | ||
29 | AC_SUBST(tar) | ||
30 | if test -z "$ZIP"; then | ||
31 | - AC_PATH_PROG(ZIP, gzip,, /bin:/usr/bin:/usr/local/bin:/usr/freeware/bin) | ||
32 | + AC_PATH_PROG(ZIP, gzip) | ||
33 | fi | ||
34 | |||
35 | zip=$ZIP | ||
36 | @@ -65,25 +65,25 @@ AC_DEFUN([AC_PACKAGE_UTILITIES], | ||
37 | AC_SUBST(makedepend) | ||
38 | |||
39 | if test -z "$AWK"; then | ||
40 | - AC_PATH_PROG(AWK, awk,, /bin:/usr/bin) | ||
41 | + AC_PATH_PROG(AWK, awk) | ||
42 | fi | ||
43 | awk=$AWK | ||
44 | AC_SUBST(awk) | ||
45 | |||
46 | if test -z "$SED"; then | ||
47 | - AC_PATH_PROG(SED, sed,, /bin:/usr/bin) | ||
48 | + AC_PATH_PROG(SED, sed) | ||
49 | fi | ||
50 | sed=$SED | ||
51 | AC_SUBST(sed) | ||
52 | |||
53 | if test -z "$ECHO"; then | ||
54 | - AC_PATH_PROG(ECHO, echo,, /bin:/usr/bin) | ||
55 | + AC_PATH_PROG(ECHO, echo) | ||
56 | fi | ||
57 | echo=$ECHO | ||
58 | AC_SUBST(echo) | ||
59 | |||
60 | if test -z "$SORT"; then | ||
61 | - AC_PATH_PROG(SORT, sort,, /bin:/usr/bin) | ||
62 | + AC_PATH_PROG(SORT, sort) | ||
63 | fi | ||
64 | sort=$SORT | ||
65 | AC_SUBST(sort) | ||
66 | @@ -93,21 +93,21 @@ AC_DEFUN([AC_PACKAGE_UTILITIES], | ||
67 | |||
68 | if test "$enable_gettext" = yes; then | ||
69 | if test -z "$MSGFMT"; then | ||
70 | - AC_PATH_PROG(MSGFMT, msgfmt,, /usr/bin:/usr/local/bin:/usr/freeware/bin) | ||
71 | + AC_PATH_PROG(MSGFMT, msgfmt) | ||
72 | fi | ||
73 | msgfmt=$MSGFMT | ||
74 | AC_SUBST(msgfmt) | ||
75 | AC_PACKAGE_NEED_UTILITY($1, "$msgfmt", msgfmt, gettext) | ||
76 | |||
77 | if test -z "$MSGMERGE"; then | ||
78 | - AC_PATH_PROG(MSGMERGE, msgmerge,, /usr/bin:/usr/local/bin:/usr/freeware/bin) | ||
79 | + AC_PATH_PROG(MSGMERGE, msgmerge) | ||
80 | fi | ||
81 | msgmerge=$MSGMERGE | ||
82 | AC_SUBST(msgmerge) | ||
83 | AC_PACKAGE_NEED_UTILITY($1, "$msgmerge", msgmerge, gettext) | ||
84 | |||
85 | if test -z "$XGETTEXT"; then | ||
86 | - AC_PATH_PROG(XGETTEXT, xgettext,, /usr/bin:/usr/local/bin:/usr/freeware/bin) | ||
87 | + AC_PATH_PROG(XGETTEXT, xgettext) | ||
88 | fi | ||
89 | xgettext=$XGETTEXT | ||
90 | AC_SUBST(xgettext) | ||
91 | @@ -117,7 +117,7 @@ AC_DEFUN([AC_PACKAGE_UTILITIES], | ||
92 | fi | ||
93 | |||
94 | if test -z "$RPM"; then | ||
95 | - AC_PATH_PROG(RPM, rpm,, /bin:/usr/bin:/usr/freeware/bin) | ||
96 | + AC_PATH_PROG(RPM, rpm) | ||
97 | fi | ||
98 | rpm=$RPM | ||
99 | AC_SUBST(rpm) | ||