From 8aad142794f9d61d51e1ad01a9fbb7611479202d Mon Sep 17 00:00:00 2001 From: Adrian Schmutzler Date: Wed, 3 Feb 2021 22:01:54 +0100 Subject: [PATCH] buildscript: remove unneeded global download directory link Some time ago, the firmware created a directory for each target and built OpenWrt separately there. In this situation, it made sense to download files only once and share them between these build directories. However, since we nowadays only have one build directory for all targets, this makes no sense anymore. Remove the link. Signed-off-by: Adrian Schmutzler --- buildscript | 4 ---- 1 file changed, 4 deletions(-) diff --git a/buildscript b/buildscript index f7889e92..3736e508 100755 --- a/buildscript +++ b/buildscript @@ -140,10 +140,6 @@ prepare() { # exists in builddir. apply_variant - #saves ~200MB for each build - test -d ./src/dl || mkdir ./src/dl - ln -s ../src/dl "$builddir"/dl - update_feeds }