From e0c4bd9eb46832302b6ceea0e379b438d3553bd9 Mon Sep 17 00:00:00 2001
From: Mohammad Akhlaghi <mohammad@akhlaghi.org>
Date: Wed, 5 Dec 2018 09:54:48 +0000
Subject: Forgotten line break comment added

Mac OS's `install_name_tool' program's command is broken up into two lines,
but I had forgotten to add a line-break so the command would fail. I didn't
notice it myself because this error only shows up on Mac OS systems that
actually need to parse it.
---
 reproduce/src/make/dependencies.mk | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

(limited to 'reproduce/src/make')

diff --git a/reproduce/src/make/dependencies.mk b/reproduce/src/make/dependencies.mk
index 24f42a9..a22c872 100644
--- a/reproduce/src/make/dependencies.mk
+++ b/reproduce/src/make/dependencies.mk
@@ -229,10 +229,9 @@ $(ilidir)/libgit2: $(tdir)/libgit2-$(libgit2-version).tar.gz \
 	              -DUSE_SSH=OFF -DBUILD_CLAR=OFF            \
 	              -DTHREADSAFE=ON )
 
-        # The builders didn't set the shared library name (ID) for Mac OS
-        # systems. So we'll have to fix it manually.
+        # Correct the shared library absolute address if necessary.
 	if [ x$(on_mac_os) = xyes ]; then
-	  install_name_tool -id $(ildir)/libgit2.26.dylib
+	  install_name_tool -id $(ildir)/libgit2.26.dylib \
 	                        $(ildir)/libgit2.26.dylib
 	fi
 
@@ -248,10 +247,9 @@ $(ilidir)/wcslib: $(tdir)/wcslib-$(wcslib-version).tar.bz2 \
                        --with-cfitsioinc=$(idir)/include             \
                        --without-pgplot --disable-fortran)
 
-        # The builders didn't set the shared library name (ID) for Mac OS
-        # systems. So we'll have to fix it manually.
+        # Correct the shared library absolute address if necessary.
 	if [ x$(on_mac_os) = xyes ]; then
-	  install_name_tool -id $(ildir)/libwcs.6.2.dylib
+	  install_name_tool -id $(ildir)/libwcs.6.2.dylib \
 	                        $(ildir)/libwcs.6.2.dylib;
 	fi
 
-- 
cgit v1.2.1