From fcb19bd23382e04a87bf370e2db9e61339a51d75 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 Reviewed-by: Robert Langhammer --- buildscript | 4 ---- 1 file changed, 4 deletions(-) diff --git a/buildscript b/buildscript index 030d043c..5fe57d91 100755 --- a/buildscript +++ b/buildscript @@ -142,10 +142,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 }