diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2015-10-05 14:44:34 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-01 21:31:01 +0000 |
commit | 61e1617f9f024ead0b77004c94f2de45c88a4aa8 (patch) | |
tree | e7d2088baea5321f981616bb866936417f13802b /meta/recipes-core | |
parent | 33868c680587036d1aa3b56e66599a5b972626c4 (diff) | |
download | openembedded-core-61e1617f9f024ead0b77004c94f2de45c88a4aa8.tar.gz openembedded-core-61e1617f9f024ead0b77004c94f2de45c88a4aa8.tar.bz2 openembedded-core-61e1617f9f024ead0b77004c94f2de45c88a4aa8.zip |
busybox.inc: don't export EXTRA_OEMAKE
EXTRA_OEMAKE is private to OE and shouldn't be exported to
the busybox build.
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/busybox/busybox.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc index cfdea30bdd..9e1a207e6d 100644 --- a/meta/recipes-core/busybox/busybox.inc +++ b/meta/recipes-core/busybox/busybox.inc @@ -17,7 +17,8 @@ BUSYBOX_SPLIT_SUID ?= "1" export EXTRA_CFLAGS = "${CFLAGS}" export EXTRA_LDFLAGS = "${LDFLAGS}" -export EXTRA_OEMAKE += "'LD=${CCLD}'" + +EXTRA_OEMAKE += "LD='${CCLD}'" PACKAGES =+ "${PN}-httpd ${PN}-udhcpd ${PN}-udhcpc ${PN}-syslog ${PN}-mdev ${PN}-hwclock" |