diff options
author | Joe Slater <jslater@windriver.com> | 2012-11-15 09:47:49 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-24 15:12:34 +0000 |
commit | d241626215c420d931074b065f492542471ae242 (patch) | |
tree | 4662f071180759330d283e0ae14937d6ec95c633 /meta/recipes-connectivity/iproute2 | |
parent | 10baa59425378ad6b4af57cb01a81ea8052fbf4c (diff) | |
download | poky-d241626215c420d931074b065f492542471ae242.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
(From OE-Core rev: 8d71f7d33c18bb0a975eb86d602bda42db4baa2c)
Signed-off-by: Joe Slater <jslater@windriver.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')
-rw-r--r-- | meta/recipes-connectivity/iproute2/iproute2_3.5.1.bb | 6 |
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 @@ | |||
1 | require iproute2.inc | 1 | require iproute2.inc |
2 | 2 | ||
3 | PR = "r1" | 3 | PR = "r2" |
4 | 4 | ||
5 | SRC_URI = "${KERNELORG_MIRROR}/linux/utils/net/${BPN}/${BPN}-${PV}.tar.xz \ | 5 | SRC_URI = "${KERNELORG_MIRROR}/linux/utils/net/${BPN}/${BPN}-${PV}.tar.xz \ |
6 | file://configure-cross.patch" | 6 | file://configure-cross.patch" |
7 | 7 | ||
8 | SRC_URI[md5sum] = "d4425b44edd5eacd6099e672e4baacbf" | 8 | SRC_URI[md5sum] = "d4425b44edd5eacd6099e672e4baacbf" |
9 | SRC_URI[sha256sum] = "36f2674e5436289f3ccfb0a58707aca9dcfa295d06afc36d2117674508f5ef72" | 9 | SRC_URI[sha256sum] = "36f2674e5436289f3ccfb0a58707aca9dcfa295d06afc36d2117674508f5ef72" |
10 | |||
11 | # CFLAGS are computed in Makefile and reference CCOPTS | ||
12 | # | ||
13 | EXTRA_OEMAKE_append = " CCOPTS='${CFLAGS}'" | ||