From 7d1d6f88fb28630cc581ea41c487b2b0c0da269f Mon Sep 17 00:00:00 2001 From: Raul Infante-Sainz Date: Mon, 25 Mar 2019 14:45:47 +0000 Subject: Corrected makelink command to avoid paste command We just noticed that recently the `paste' command on macOS doesn't work with a pipe. So we are now simply using the `tr' command in reverse to re-create the PATH (to find where to link to). --- .file-metadata | Bin 3927 -> 4510 bytes reproduce/src/make/dependencies-basic.mk | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.file-metadata b/.file-metadata index 5a4f942..7ca2f2d 100644 Binary files a/.file-metadata and b/.file-metadata differ diff --git a/reproduce/src/make/dependencies-basic.mk b/reproduce/src/make/dependencies-basic.mk index 76bfa16..b51f35d 100644 --- a/reproduce/src/make/dependencies-basic.mk +++ b/reproduce/src/make/dependencies-basic.mk @@ -202,9 +202,9 @@ $(tarballs): $(tdir)/%: # is very annoying and can cause many complications. We thus remove any # part of PATH of that has `ccache' in it before making symbolic links to # the programs we are not building ourselves. -makelink = origpath="$$PATH"; \ +makelink = origpath="$$PATH"; \ export PATH=$$(echo $(syspath) | tr : '\n' | grep -v ccache \ - | paste -s -d:); \ + | tr '\n' :); \ a=$$(which $(1) 2> /dev/null); \ if [ -e $(ibdir)/$(1) ]; then rm $(ibdir)/$(1); fi; \ if [ x"$(2)" = xcopy ]; then c=cp; else c="ln -s"; fi; \ -- cgit v1.2.1