From e83270cc0c9c17951669874bcfb5284301272ede Mon Sep 17 00:00:00 2001
From: Mohammad Akhlaghi <mohammad@akhlaghi.org>
Date: Mon, 8 Jul 2019 00:16:20 +0100
Subject: Corrected typo in the installation of libgit2

In one of the last few commits, the commands in the recipe of libgit2 was
merged with `&&' so it stops if anything fails. But I had forgot to add a
`;' at the end of the `install_name_tool' command. This is corrected with
this commit.
---
 reproduce/software/make/high-level.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'reproduce')

diff --git a/reproduce/software/make/high-level.mk b/reproduce/software/make/high-level.mk
index 67cfa4a..b350c57 100644
--- a/reproduce/software/make/high-level.mk
+++ b/reproduce/software/make/high-level.mk
@@ -491,7 +491,7 @@ $(ibidir)/libgit2: $(tdir)/libgit2-$(libgit2-version).tar.gz \
 	              -DTHREADSAFE=ON ) \
 	&& if [ x$(on_mac_os) = xyes ]; then \
 	     install_name_tool -id $(ildir)/libgit2.26.dylib \
-	                           $(ildir)/libgit2.26.dylib \
+	                           $(ildir)/libgit2.26.dylib; \
 	   fi \
 	&& echo "Libgit2 $(libgit2-version)" > $@
 
-- 
cgit v1.2.1