From: Baruch Siach Date: Mon, 30 Dec 2013 10:20:32 +0000 (+0200) Subject: gstreamer: fix xtensa configure X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=02b31c6556b504c327d58e38055844ab9cae9bb3;p=buildroot.git gstreamer: fix xtensa configure Disable unaligned access to avoid configure run test. Fixes http://autobuild.buildroot.net/results/a0c/a0cca019b0b2f33b6c2be17e5a44a807bbb4dac1/. Signed-off-by: Baruch Siach Signed-off-by: Thomas Petazzoni --- diff --git a/package/gstreamer/gstreamer/gstreamer.mk b/package/gstreamer/gstreamer/gstreamer.mk index f7919eaa8f..0667e38904 100644 --- a/package/gstreamer/gstreamer/gstreamer.mk +++ b/package/gstreamer/gstreamer/gstreamer.mk @@ -12,7 +12,7 @@ GSTREAMER_INSTALL_STAGING = YES # Checking if unaligned memory access works correctly cannot be done when cross # compiling. For the following architectures there is no information available # in the configure script. -ifeq ($(BR2_avr32),y) +ifeq ($(BR2_avr32)$(BR2_xtensa),y) GSTREAMER_CONF_ENV = as_cv_unaligned_access=no endif ifeq ($(BR2_aarch64),y)