From fee22fe7b91fd7df35dcb846df2040b10d88fb16 Mon Sep 17 00:00:00 2001 From: Raul Infante-Sainz Date: Sat, 27 Apr 2019 13:18:17 +0100 Subject: Lack of semicolons in Binutils installation rule for Mac OS fixed Until this commit, in Mac OS we were installing `binutils' as symbolic links of various programs (`as', `ar', `ld', `nm',` ps' and `ranlib'). However, there was a missing semicolon at the end of each line. As a consecuence, the installation of `binutils' on Mac OS systems failed. With this commit, we fix this problem by typing a semicolon at the end of each makelink line. --- reproduce/software/make/basic.mk | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'reproduce/software/make/basic.mk') diff --git a/reproduce/software/make/basic.mk b/reproduce/software/make/basic.mk index c800411..e657f4a 100644 --- a/reproduce/software/make/basic.mk +++ b/reproduce/software/make/basic.mk @@ -937,13 +937,13 @@ binutils-prerequisites = $(tdir)/binutils-$(binutils-version).tar.lz \ endif $(ibidir)/binutils: $(binutils-prerequisites) if [ x$(on_mac_os) = xyes ]; then \ - $(call makelink,as) \ - $(call makelink,ar) \ - $(call makelink,ld) \ - $(call makelink,nm) \ - $(call makelink,ps) \ - $(call makelink,ranlib) \ - echo "" > $@; \ + $(call makelink,as); \ + $(call makelink,ar); \ + $(call makelink,ld); \ + $(call makelink,nm); \ + $(call makelink,ps); \ + $(call makelink,ranlib); \ + echo "" > $@; \ else \ $(call gbuild, $<, binutils-$(binutils-version), static) \ && echo "GNU Binutils $(binutils-version)" > $@; \ -- cgit v1.2.1