mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 15:47:11 +02:00
add endian override for mips (big-endian) arch
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2134 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
73d4408303
commit
7d97448a6e
@ -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) \
|
||||
|
Loading…
Reference in New Issue
Block a user