From: Peter Korsgaard Date: Thu, 14 Jul 2011 14:38:07 +0000 (+0200) Subject: linux: fix build with release candidates X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ea7f5ff97617e6d84017df63a8599b17d10ca57c;p=buildroot.git linux: fix build with release candidates Fixes *** Recursive variable `LINUX_SITE' references itself Signed-off-by: Peter Korsgaard --- diff --git a/linux/linux.mk b/linux/linux.mk index 06792382a9..bdd8bb3e44 100644 --- a/linux/linux.mk +++ b/linux/linux.mk @@ -23,7 +23,7 @@ LINUX_VERSION_MINOR = $(word 2,$(subst ., ,$(subst -, ,$(LINUX_VERSION)))) LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v$(LINUX_VERSION_MAJOR).$(LINUX_VERSION_MINOR)/ # release candidates are in testing/ subdir ifneq ($(findstring -rc,$(LINUX_VERSION)),) -LINUX_SITE = $(LINUX_SITE)testing/ +LINUX_SITE := $(LINUX_SITE)testing/ endif # -rc endif