diff options
| author | Constantin Musca <constantinx.musca@intel.com> | 2012-08-14 15:50:26 +0300 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-17 18:04:22 +0100 |
| commit | 79512d5ef9e7d586ee996e965a2554813695eaa8 (patch) | |
| tree | 324ffe5b7cf5d0c15c9338a5b6bbb75f28a4a157 /meta/recipes-bsp/pciutils/pciutils-3.1.9/guess-fix.patch | |
| parent | 1356f8fefd447064700a41029a9eadbbbd6a1540 (diff) | |
| download | poky-79512d5ef9e7d586ee996e965a2554813695eaa8.tar.gz | |
pciutils: upgrade to 3.1.10
(From OE-Core rev: 8007bbf0bd8ef379340c75370fcdb29e367e5682)
Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/pciutils/pciutils-3.1.9/guess-fix.patch')
| -rw-r--r-- | meta/recipes-bsp/pciutils/pciutils-3.1.9/guess-fix.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/meta/recipes-bsp/pciutils/pciutils-3.1.9/guess-fix.patch b/meta/recipes-bsp/pciutils/pciutils-3.1.9/guess-fix.patch deleted file mode 100644 index 540b4a0d13..0000000000 --- a/meta/recipes-bsp/pciutils/pciutils-3.1.9/guess-fix.patch +++ /dev/null | |||
| @@ -1,37 +0,0 @@ | |||
| 1 | the original guess algorithm is broken for many archs | ||
| 2 | for example, the following two would break: | ||
| 3 | arm-linux-gnueabi --> sys=gnueabi | ||
| 4 | x86_64-unknown-pc-linux-gnu --> sys = pc-linux-gnu | ||
| 5 | |||
| 6 | use a simpler scheme here and hope it works for all the cases | ||
| 7 | |||
| 8 | Upstream-Status: Pending | ||
| 9 | |||
| 10 | 7/30/2010 - created by Qing He <qing.he@intel.com> | ||
| 11 | |||
| 12 | diff --git a/lib/configure b/lib/configure | ||
| 13 | index 4318b05..84f6acb 100755 | ||
| 14 | --- a/lib/configure | ||
| 15 | +++ b/lib/configure | ||
| 16 | @@ -53,20 +53,7 @@ cpu=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` | ||
| 17 | sys=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` | ||
| 18 | echo " $host $rel $cpu $sys" | ||
| 19 | |||
| 20 | -if [ "$host" = "linux--gnueabi" ] | ||
| 21 | -then | ||
| 22 | - sys=linux | ||
| 23 | -fi | ||
| 24 | - | ||
| 25 | -if [ "$host" = "linux--uclibc" ] | ||
| 26 | -then | ||
| 27 | - sys=linux | ||
| 28 | -fi | ||
| 29 | - | ||
| 30 | -if [ "$host" = "linux--uclibceabi" ] | ||
| 31 | -then | ||
| 32 | - sys=linux | ||
| 33 | -fi | ||
| 34 | +{ echo "$host" | grep linux; } && sys=linux | ||
| 35 | |||
| 36 | c=config.h | ||
| 37 | m=config.mk | ||
