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 | 4bef9bd8152c67566f0c9f517cffadb40a008d88 (patch) | |
tree | 6d1c3fecfa7f37635b145ae830a0d7822c86f4d7 /package/libnet/Makefile | |
parent | 70666671b5c69a51b263a6640d6c136f54ce2a77 (diff) | |
download | upstream-4bef9bd8152c67566f0c9f517cffadb40a008d88.tar.gz upstream-4bef9bd8152c67566f0c9f517cffadb40a008d88.tar.bz2 upstream-4bef9bd8152c67566f0c9f517cffadb40a008d88.zip |
add endian override for mips (big-endian) arch
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2134 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/libnet/Makefile')
-rw-r--r-- | package/libnet/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/package/libnet/Makefile b/package/libnet/Makefile index 97b228e98f..1673c0de1c 100644 --- a/package/libnet/Makefile +++ b/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) \ |