diff options
author | Justin Capella <justincapella@gmail.com> | 2014-12-28 15:40:23 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-30 11:38:40 +0000 |
commit | 766dcc69d320052f668945d2207bef723cf8be4b (patch) | |
tree | 08e7971531fce7a05b501d98b3d89a6bb4218972 /meta | |
parent | bfb06977edff4992b40eda484fcdb6e2b7ca029c (diff) | |
download | openembedded-core-766dcc69d320052f668945d2207bef723cf8be4b.tar.gz openembedded-core-766dcc69d320052f668945d2207bef723cf8be4b.tar.bz2 openembedded-core-766dcc69d320052f668945d2207bef723cf8be4b.zip |
wpa-supplicant: avoid host contamination of drivers by libnl3
(See patch refrenced from OE-core rev: 1c3beda0015da9a0fec2581af7645c9ea122c7e3)
Modifies do_configure to inject DRV_CFLAGS variable into wpa_supplicant/.config which is then included during make of drivers.
Signed-off-by: Justin Capella <justincapella@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-connectivity/wpa-supplicant/wpa-supplicant.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant.inc b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant.inc index 2bc93392ef..6f0de3cab8 100644 --- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant.inc +++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant.inc @@ -41,6 +41,7 @@ do_configure () { ${MAKE} -C wpa_supplicant clean install -m 0755 ${WORKDIR}/defconfig wpa_supplicant/.config echo "CFLAGS +=\"-I${STAGING_INCDIR}/libnl3\"" >> wpa_supplicant/.config + echo "DRV_CFLAGS +=\"-I${STAGING_INCDIR}/libnl3\"" >> wpa_supplicant/.config if echo "${PACKAGECONFIG}" | grep -qw "openssl"; then ssl=openssl |