bluez_utils: disable PIE for m68k

PIE for m68k seems broken even for non-static case.
Fixes following kind of autobuild failures:
http://autobuild.buildroot.net/results/5bb524a58575d57de1006ffa70be17ca713e7730/

Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Waldemar Brodkorb 2016-06-22 21:13:23 +02:00 committed by Thomas Petazzoni
parent 6ae48ae3af
commit ffa4078699

View File

@ -54,4 +54,9 @@ BLUEZ_UTILS_CONF_OPTS += \
--disable-usb --disable-usb
endif endif
# PIE is broken for m68k
ifeq ($(BR2_m68k),y)
BLUEZ_UTILS_CONF_OPTS += --disable-pie
endif
$(eval $(autotools-package)) $(eval $(autotools-package))