From 21daada40cce9305efc19bc7a0f941b0b5e4f471 Mon Sep 17 00:00:00 2001 From: wangguokun Date: Fri, 16 Aug 2024 18:54:08 +0800 Subject: [PATCH] lib/libfxdiv: remove unconditional download of source code during build process Signed-off-by: wangguokun --- Makefile.uk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.uk b/Makefile.uk index f438e93..e8c60af 100644 --- a/Makefile.uk +++ b/Makefile.uk @@ -40,7 +40,10 @@ $(eval $(call addlib_s,libfxdiv,$(CONFIG_LIBFXDIV))) LIBFXDIV_VERSION=f8c5354679ec2597792bc70a9e06eff50c508b9a LIBFXDIV_URL=https://github.com/Maratyszcza/FXdiv/archive/f8c5354.zip LIBFXDIV_PATCHDIR=$(LIBFXDIV_BASE)/patches + +ifeq ($(CONFIG_LIBFXDIV), y) $(eval $(call fetch,libfxdiv,$(LIBFXDIV_URL))) +endif ################################################################################ # Helpers -- Gitee