From 037a0788f64262feddf49379602099b1d70aa2d6 Mon Sep 17 00:00:00 2001 From: Daniel Dickinson Date: Tue, 15 Mar 2011 12:48:48 +0000 Subject: [PATCH] Telephony: Yate: Fixed bigendian test to use CONFIG_BIG_ENDIAN, not a cached autoconf variable. Thanks jow for pointing this out. SVN-Revision: 26179 --- net/yate/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/yate/Makefile b/net/yate/Makefile index 50d1b9e9f..2b95a14b7 100644 --- a/net/yate/Makefile +++ b/net/yate/Makefile @@ -42,7 +42,7 @@ define Package/$(PKG_NAME)/Default/description SIP, H.323, IAX, PSTN, and more. endef -TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include $(if $(findstring ${ac_cv_c_bigendian},yes),-DBIGENDIAN,) +TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include $(if $(CONFIG_BIG_ENDIAN),-DBIGENDIAN,) CONFIGURE_ARGS+= \ --without-libqt4 \ -- 2.30.2