summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Slater <jslater@windriver.com>2012-11-15 17:29:54 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-11-24 15:12:34 +0000
commit165ed2567057925d7aedc35d1bd5bfd71c008739 (patch)
tree9014dab1532290b17dbb33896cb1e7f470eded98
parenta68c456e851023606c882f287a398bbaba16f298 (diff)
downloadpoky-165ed2567057925d7aedc35d1bd5bfd71c008739.tar.gz
procps: pass CFLAGS to make
EXTRA_OEMAKE in the recipe currently discards the environment CFLAGS when setting CFLAGS passed to make. We change that to include these options. (From OE-Core rev: 67924616963fee9cb9f2405d93c74a8cc10b6eab) 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>
-rw-r--r--meta/recipes-extended/procps/procps_3.2.8.bb8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-extended/procps/procps_3.2.8.bb b/meta/recipes-extended/procps/procps_3.2.8.bb
index 7b011a0147..3f20beaf30 100644
--- a/meta/recipes-extended/procps/procps_3.2.8.bb
+++ b/meta/recipes-extended/procps/procps_3.2.8.bb
@@ -1,6 +1,6 @@
1require procps.inc 1require procps.inc
2 2
3PR = "r9" 3PR = "r10"
4 4
5SRC_URI += "file://procmodule.patch \ 5SRC_URI += "file://procmodule.patch \
6 file://psmodule.patch \ 6 file://psmodule.patch \
@@ -13,12 +13,12 @@ SRC_URI += "file://procmodule.patch \
13SRC_URI[md5sum] = "9532714b6846013ca9898984ba4cd7e0" 13SRC_URI[md5sum] = "9532714b6846013ca9898984ba4cd7e0"
14SRC_URI[sha256sum] = "11ed68d8a4433b91cd833deb714a3aa849c02aea738c42e6b4557982419c1535" 14SRC_URI[sha256sum] = "11ed68d8a4433b91cd833deb714a3aa849c02aea738c42e6b4557982419c1535"
15 15
16EXTRA_OEMAKE = "CFLAGS=-I${STAGING_INCDIR} \ 16EXTRA_OEMAKE = 'CFLAGS="${CFLAGS} -I${STAGING_INCDIR}" \
17 CPPFLAGS=-I${STAGING_INCDIR} \ 17 CPPFLAGS=-I${STAGING_INCDIR} \
18 LDFLAGS="${LDFLAGS}" \ 18 LDFLAGS="${LDFLAGS}" \
19 CURSES=-lncurses \ 19 CURSES=-lncurses \
20 install='install -D' \ 20 install="install -D" \
21 ldconfig=echo" 21 ldconfig=echo'
22 22
23do_install_append () { 23do_install_append () {
24 install -d ${D}${sysconfdir} 24 install -d ${D}${sysconfdir}