1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-01 11:29:48 +03:00

fix kexec-tools builds when libc != uClibc, strip quotes from KEXEC_TARGET_NAME config option

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16729 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2009-07-07 03:00:04 +00:00
parent 9a319f4c47
commit 39ed77af1e

View File

@ -35,9 +35,11 @@ define Package/kexec-tools/config
source "$(SOURCE)/kexec-config.in"
endef
KEXEC_TARGET_NAME:=$(call qstrip,$(CONFIG_KEXEC_TOOLS_TARGET_NAME))-linux-$(TARGET_SUFFIX)
CONFIGURE_ARGS = \
--target=$(CONFIG_KEXEC_TOOLS_TARGET_NAME)-linux-$(TARGET_SUFFIX) \
--host=$(GNU_TARGET_NAME)-uclibc \
--target=$(KEXEC_TARGET_NAME) \
--host=$(REAL_GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) \
--program-prefix="" \
--program-suffix="" \