1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-02-09 20:41:57 +02: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" source "$(SOURCE)/kexec-config.in"
endef endef
KEXEC_TARGET_NAME:=$(call qstrip,$(CONFIG_KEXEC_TOOLS_TARGET_NAME))-linux-$(TARGET_SUFFIX)
CONFIGURE_ARGS = \ CONFIGURE_ARGS = \
--target=$(CONFIG_KEXEC_TOOLS_TARGET_NAME)-linux-$(TARGET_SUFFIX) \ --target=$(KEXEC_TARGET_NAME) \
--host=$(GNU_TARGET_NAME)-uclibc \ --host=$(REAL_GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) \ --build=$(GNU_HOST_NAME) \
--program-prefix="" \ --program-prefix="" \
--program-suffix="" \ --program-suffix="" \