diff mbox

bluez_utils: disable PIE for m68k

Message ID 20160622191323.GA5898@waldemar-brodkorb.de
State Accepted
Headers show

Commit Message

Waldemar Brodkorb June 22, 2016, 7:13 p.m. UTC
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>
---
 package/bluez_utils/bluez_utils.mk | 5 +++++
 1 file changed, 5 insertions(+)

Comments

Thomas Petazzoni June 25, 2016, 1:46 p.m. UTC | #1
Hello,

On Wed, 22 Jun 2016 21:13:23 +0200, Waldemar Brodkorb wrote:
> 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>
> ---
>  package/bluez_utils/bluez_utils.mk | 5 +++++
>  1 file changed, 5 insertions(+)

Applied to master, thanks.

Thomas
diff mbox

Patch

diff --git a/package/bluez_utils/bluez_utils.mk b/package/bluez_utils/bluez_utils.mk
index c2e8295..91c2905 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))