diff options
author | Jean-Baptiste Theou <jtheou@adeneo-embedded.us> | 2014-08-07 13:07:23 -0700 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-08-07 22:16:21 +0200 |
commit | a47b633d79ae4b0fd980408a65e9116165fce673 (patch) | |
tree | 14dc58bc0dadcfdc64805f2777e04a33d986ee52 | |
parent | b64ef58e082fd6e691b1bf5dbeeed67413330fc7 (diff) | |
download | buildroot-a47b633d79ae4b0fd980408a65e9116165fce673.tar.gz buildroot-a47b633d79ae4b0fd980408a65e9116165fce673.zip |
linux: fix LINUX_SITE for release candidates
Signed-off-by: Jean-Baptiste Theou <jtheou@adeneo-embedded.us>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | linux/linux.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/linux.mk b/linux/linux.mk index e433e0d1c8..2fb7437e89 100644 --- a/linux/linux.mk +++ b/linux/linux.mk @@ -34,7 +34,7 @@ LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v3.x endif # release candidates are in testing/ subdir ifneq ($(findstring -rc,$(LINUX_VERSION)),) -LINUX_SITE := $(LINUX_SITE)testing/ +LINUX_SITE := $(LINUX_SITE)/testing/ endif # -rc endif |