diff options
| author | Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> | 2014-07-31 10:46:58 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-07-31 23:17:46 +0200 |
| commit | c7f4b964718bc5a3329bb730f59e24091ecbc7a2 (patch) | |
| tree | 4a11f71220ad375501cf6d482bc5612393170b62 /linux | |
| parent | 17902f5b1601ab2036b6e89d91c2042755545cec (diff) | |
| download | buildroot-c7f4b964718bc5a3329bb730f59e24091ecbc7a2.tar.gz buildroot-c7f4b964718bc5a3329bb730f59e24091ecbc7a2.zip | |
package: remove the trailing slash sign from <PKG>_SITE variable
Since the trailing slash is stripped from $($(PKG)_SITE) by pkg-generic.mk:
$(call DOWNLOAD,$($(PKG)_SITE:/=)/$($(PKG)_SOURCE))
so it is redundant.
This patch removes it from $(PKG)_SITE variable for BR consistency.
Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'linux')
| -rw-r--r-- | linux/linux.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/linux.mk b/linux/linux.mk index 6c0b272efa..e433e0d1c8 100644 --- a/linux/linux.mk +++ b/linux/linux.mk @@ -28,9 +28,9 @@ LINUX_SOURCE = linux-$(LINUX_VERSION).tar.xz # to use the $(word) function. We support versions such as 3.1, # 2.6.32, 2.6.32-rc1, 3.0-rc6, etc. ifeq ($(findstring x2.6.,x$(LINUX_VERSION)),x2.6.) -LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v2.6/ +LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v2.6 else -LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v3.x/ +LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v3.x endif # release candidates are in testing/ subdir ifneq ($(findstring -rc,$(LINUX_VERSION)),) |

