diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-10-17 13:03:22 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-10-17 13:03:22 +0000 |
commit | be8dffe91ab7499997858275889bfde302dd95da (patch) | |
tree | 17fbfc376c5083ec22ba027509fa7076b6e0318c | |
parent | a14d43dd30a127d11dd82c6ec3318333cb10bc05 (diff) | |
download | mtk-20170518-be8dffe91ab7499997858275889bfde302dd95da.zip mtk-20170518-be8dffe91ab7499997858275889bfde302dd95da.tar.gz mtk-20170518-be8dffe91ab7499997858275889bfde302dd95da.tar.bz2 |
add endian override for mips (big-endian) arch
SVN-Revision: 2134
-rw-r--r-- | openwrt/package/libnet/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/openwrt/package/libnet/Makefile b/openwrt/package/libnet/Makefile index 97b228e..1673c0d 100644 --- a/openwrt/package/libnet/Makefile +++ b/openwrt/package/libnet/Makefile @@ -16,6 +16,11 @@ PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install include $(TOPDIR)/package/rules.mk +ENDIAN:=lil +ifeq ($(ARCH),mips) +ENDIAN:=big +endif + $(eval $(call PKG_template,LIBNET,libnet,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(PKG_BUILD_DIR)/.configured: @@ -31,7 +36,7 @@ $(PKG_BUILD_DIR)/.configured: LDFLAGS="-L$(STAGING_DIR)/usr/lib" \ ac_libnet_have_pf_packet=yes \ ac_cv_lbl_unaligned_fail=no \ - ac_cv_libnet_endianess=lil \ + ac_cv_libnet_endianess=$(ENDIAN) \ ./configure \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ |