linux: fix build with release candidates

Fixes *** Recursive variable `LINUX_SITE' references itself

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012.11.x
Peter Korsgaard 2011-07-14 16:38:07 +02:00
parent e48d8ba57d
commit ea7f5ff976
1 changed files with 1 additions and 1 deletions

View File

@ -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