aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/iproute2
diff options
context:
space:
mode:
authorJoe Slater <jslater@windriver.com>2012-11-15 09:47:49 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-11-24 15:12:07 +0000
commit8d71f7d33c18bb0a975eb86d602bda42db4baa2c (patch)
tree7077a3fa252fb421a7ed1531bda32c340abe44e1 /meta/recipes-connectivity/iproute2
parent9ad8f7c2bae021269e9a8e35f9fc44a16d23bb6f (diff)
downloadopenembedded-core-8d71f7d33c18bb0a975eb86d602bda42db4baa2c.tar.gz
iproute2: pass CFLAGS to Makefile\
Makefile computes CFLAGS, but we can see that our defaults get included by using CCOPTS to pass them to make. Upstream-Status: Pending Signed-off-by: Joe Slater <jslater@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-connectivity/iproute2')
-rw-r--r--meta/recipes-connectivity/iproute2/iproute2_3.5.1.bb6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/iproute2/iproute2_3.5.1.bb b/meta/recipes-connectivity/iproute2/iproute2_3.5.1.bb
index c1e9bd3a86..3d402cffcd 100644
--- a/meta/recipes-connectivity/iproute2/iproute2_3.5.1.bb
+++ b/meta/recipes-connectivity/iproute2/iproute2_3.5.1.bb
@@ -1,9 +1,13 @@
require iproute2.inc
-PR = "r1"
+PR = "r2"
SRC_URI = "${KERNELORG_MIRROR}/linux/utils/net/${BPN}/${BPN}-${PV}.tar.xz \
file://configure-cross.patch"
SRC_URI[md5sum] = "d4425b44edd5eacd6099e672e4baacbf"
SRC_URI[sha256sum] = "36f2674e5436289f3ccfb0a58707aca9dcfa295d06afc36d2117674508f5ef72"
+
+# CFLAGS are computed in Makefile and reference CCOPTS
+#
+EXTRA_OEMAKE_append = " CCOPTS='${CFLAGS}'"