1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-27 17:13:11 +02:00

override default configure to use --target=host and --build=host (closes: #760)

git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4779 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2006-09-10 09:56:42 +00:00
parent 203fe174cc
commit b463ec4fb9

View File

@ -19,6 +19,27 @@ PKG_CAT:=zcat
include $(INCLUDE_DIR)/host-build.mk
define Build/Configure
( cd $(PKG_BUILD_DIR); \
./configure \
--target=$(GNU_HOST_NAME) \
--host=$(GNU_HOST_NAME) \
--build=$(GNU_HOST_NAME) \
--program-prefix="" \
--program-suffix="" \
--prefix=/usr \
--exec-prefix=/usr \
--bindir=/usr/bin \
--sbindir=/usr/sbin \
--libexecdir=/usr/lib \
--sysconfdir=/etc \
--datadir=/usr/share \
--localstatedir=/var \
--mandir=/usr/man \
--infodir=/usr/info \
)
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) all
endef