diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2016-06-22 21:13:23 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-06-25 15:46:02 +0200 |
commit | ffa407869947b9ac011f20432f595f76bc88c5d3 (patch) | |
tree | 3ac6885327e6e809f7a760eedae3564668c38794 /package/bluez_utils | |
parent | 6ae48ae3af9840a0b09d0cf0d6b07b2435910eaa (diff) |
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>
Diffstat (limited to 'package/bluez_utils')
-rw-r--r-- | package/bluez_utils/bluez_utils.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/bluez_utils/bluez_utils.mk b/package/bluez_utils/bluez_utils.mk index c2e829515..91c290560 100644 --- a/package/bluez_utils/bluez_utils.mk +++ b/package/bluez_utils/bluez_utils.mk @@ -54,4 +54,9 @@ BLUEZ_UTILS_CONF_OPTS += \ --disable-usb endif +# PIE is broken for m68k +ifeq ($(BR2_m68k),y) +BLUEZ_UTILS_CONF_OPTS += --disable-pie +endif + $(eval $(autotools-package)) |