From: Nicolas Thill Date: Tue, 7 Jul 2009 03:00:04 +0000 (+0000) Subject: fix kexec-tools builds when libc != uClibc, strip quotes from KEXEC_TARGET_NAME confi... X-Git-Tag: reboot~23032 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=69d65604a24bc0d48ebb231ae6f48a4deb9adfc8;p=oweals%2Fopenwrt.git fix kexec-tools builds when libc != uClibc, strip quotes from KEXEC_TARGET_NAME config option SVN-Revision: 16729 --- diff --git a/package/kexec-tools/Makefile b/package/kexec-tools/Makefile index 910b6a25ae..3f6137d3da 100644 --- a/package/kexec-tools/Makefile +++ b/package/kexec-tools/Makefile @@ -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="" \