From 2eac2a5c0c3a41a944a50e55818d68d94a2d8979 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Mon, 25 May 2020 15:08:21 +0300 Subject: [PATCH] make: do not pull tcc on macs --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 6ed3b0758f..c9c9339b5c 100644 --- a/Makefile +++ b/Makefile @@ -79,17 +79,23 @@ fresh_vc: latest_tcc: $(TMPTCC)/.git/config ifndef ANDROID +ifndef MAC cd $(TMPTCC) && $(GITCLEANPULL) endif +endif fresh_tcc: ifndef ANDROID +ifndef MAC rm -rf $(TMPTCC) $(GITFASTCLONE) $(TCCREPO) $(TMPTCC) endif +endif $(TMPTCC)/.git/config: +ifndef MAC $(MAKE) fresh_tcc +endif $(TMPVC)/.git/config: $(MAKE) fresh_vc