From 1695ca685038fe6f0124038b45cab254a6613ef4 Mon Sep 17 00:00:00 2001 From: Justin Sherman Date: Thu, 22 Jun 2023 08:13:09 -0700 Subject: [PATCH] [build] SONIC_ONLINE_DEBS no longer overwrites local build outputs (#14824) --- slave.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slave.mk b/slave.mk index 624aac7e4e..a3eab0979b 100644 --- a/slave.mk +++ b/slave.mk @@ -571,8 +571,8 @@ $(addprefix $(DEBS_PATH)/, $(SONIC_ONLINE_DEBS)) : $(DEBS_PATH)/% : .platform \ # Load the target deb from DPKG cache $(call LOAD_CACHE,$*,$@) - # Skip building the target if it is already loaded from cache - if [ -z '$($*_CACHE_LOADED)' ] ; then + # Skip building the target if it is already loaded from cache or exists in target/ directory + if [ -z '$($*_CACHE_LOADED)' ] && [ ! -e $(DEBS_PATH)/$* ] ; then $(foreach deb,$* $($*_DERIVED_DEBS), \ { curl -L -f -o $(DEBS_PATH)/$(deb) $($(deb)_CURL_OPTIONS) $($(deb)_URL) $(LOG) || { exit 1 ; } } ; )