Radix cross Linux 3pp sources

RcL sources – is a tree of Third Party and Radix source tarballs

343 Commits   0 Branches   0 Tags
author: kx <kx@radix.pro> 2023-04-08 22:45:37 +0300 committer: kx <kx@radix.pro> 2023-04-08 22:45:37 +0300 commit: c0eee091446a07e56576b7d855dd09f0da9968c8 parent: 6744b74bf3a1273caa61bf335ed4290e1844aa3e
Commit Summary:
check: removed local git mirror url
Diffstat:
1 file changed, 2 insertions, 6 deletions
diff --git a/packages/d/check/Makefile b/packages/d/check/Makefile
index 65b6fbe..de208ab 100644
--- a/packages/d/check/Makefile
+++ b/packages/d/check/Makefile
@@ -14,7 +14,7 @@
 # https://github.com/libcheck/check/releases
 #
 
-url         = https://github.com/libcheck/check.git
+url         = https://github.com/libcheck
 
 repo_name   = check
 
@@ -36,11 +36,7 @@ all: $(TARGETS)
 $(git_repo):
 	@echo -e "\n======= Clone $(repo_name).git repository =======\n"
 	@rm -rf $(repo_name)
-	@if [ "$(url)" = 'git://radix.pro' ]; then \
-	   git clone $(url)/$(repo_name).git $(repo_name) ; \
-	 else \
-	   git clone $(url) $(repo_name) ; \
-	 fi
+	@git clone $(url)/$(repo_name).git $(repo_name)
 	@touch $@