diff options
author | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2018-12-05 09:54:48 +0000 |
---|---|---|
committer | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2018-12-05 09:54:48 +0000 |
commit | e0c4bd9eb46832302b6ceea0e379b438d3553bd9 (patch) | |
tree | 856d171e534b96b9989396d1a76b88b852d0a2ae /reproduce | |
parent | a218b814196983e00c19c3bca8f8dc9698334a13 (diff) |
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.
Diffstat (limited to 'reproduce')
-rw-r--r-- | reproduce/src/make/dependencies.mk | 10 |
1 files changed, 4 insertions, 6 deletions
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 |