summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/iproute2/iproute2
diff options
context:
space:
mode:
authorCristian Iorga <cristian.iorga@intel.com>2013-01-14 17:49:26 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-16 11:57:32 +0000
commit130628666633be58b37f531c6d2a8edadb2e6dfa (patch)
tree6a5cab77c69a8238959aefb7fb7c7bb0fc5e7a22 /meta/recipes-connectivity/iproute2/iproute2
parent94cd6a15e2d12fc5ee9d9956c9191e788791962f (diff)
downloadpoky-130628666633be58b37f531c6d2a8edadb2e6dfa.tar.gz
iproute2: upgrade to v3.7.0
configure-cross patch is now simplified. sysroot is now properly set. (From OE-Core rev: 9c9c55635ef34fc0f4d5acd8434c8f64ccd5bf87) Signed-off-by: Cristian Iorga <cristian.iorga@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-connectivity/iproute2/iproute2')
-rw-r--r--meta/recipes-connectivity/iproute2/iproute2/configure-cross.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/iproute2/iproute2/configure-cross.patch b/meta/recipes-connectivity/iproute2/iproute2/configure-cross.patch
new file mode 100644
index 0000000000..10606f3926
--- /dev/null
+++ b/meta/recipes-connectivity/iproute2/iproute2/configure-cross.patch
@@ -0,0 +1,32 @@
1From 85b0589b4843c03e8e6fd9416d71ea449a73c5c0 Mon Sep 17 00:00:00 2001
2From: Koen Kooi <koen@dominion.thruhere.net>
3Date: Thu, 3 Nov 2011 10:46:16 +0100
4Subject: [PATCH] make configure cross compile safe
5
6According to Kevin Tian:
7Upstream-Status: Pending
8
9Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
10Signed-off-by: Shane Wang <shane.wang@intel.com>
11
12Index: iproute2-3.7.0/configure
13===================================================================
14--- iproute2-3.7.0.orig/configure
15+++ iproute2-3.7.0/configure
16@@ -2,6 +2,7 @@
17 # This is not an autconf generated configure
18 #
19 INCLUDE=${1:-"$PWD/include"}
20+SYSROOT=$1
21 : ${PKG_CONFIG:=pkg-config}
22 : ${CC=gcc}
23 echo "PKG_CONFIG:=${PKG_CONFIG}" >>Config
24@@ -158,7 +159,7 @@ check_ipt_lib_dir()
25 return
26 fi
27
28- for dir in /lib /usr/lib /usr/local/lib
29+ for dir in $SYSROOT/lib $SYSROOT/usr/lib $SYSROOT/usr/local/lib
30 do
31 for file in $dir/{xtables,iptables}/lib*t_*so ; do
32 if [ -f $file ]; then