From 959303df739fdae30549c7e7f6d2f2e4b735a41f Mon Sep 17 00:00:00 2001 From: snmsts Date: Thu, 12 Sep 2024 23:26:21 +0900 Subject: [PATCH] try fix error --- Makefile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 8f312cf..59c268d 100644 --- a/Makefile +++ b/Makefile @@ -76,12 +76,8 @@ ffcall: libffcall-$(FFCALL_VERSION).tar.gz rm -rf libffcall-$(FFCALL_VERSION) clisp: download lasthash - mkdir clisp; - cd clisp; \ - git init; \ - git remote add origin $(ORIGIN_URI); \ - git fetch --depth=1 origin $(shell cat lasthash); \ - git reset --hard FETCH_HEAD + git clone --depth 100 $(ORIGIN_URI) || true + cd clisp;git checkout `cat ../lasthash` clisp/version.sh: clisp echo VERSION_NUMBER=$(VERSION) > clisp/version.sh