From 118e6c6d3a950e4def65c64772b38b7952039b9c Mon Sep 17 00:00:00 2001 From: Mohammad Akhlaghi Date: Thu, 4 Apr 2019 16:52:29 +0100 Subject: Corrected typo in GCC build recipe For the tests, we had just set an absurd value for a test in the GCC build recipe to always fail, but we had forgot to fix it. It is now corrected. Also the order of making `g++' and `gfortran' was reversed for easier readablility (it doesn't matter which one is done first, it only matters that `gcc' be done last). --- reproduce/src/make/dependencies-basic.mk | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'reproduce') diff --git a/reproduce/src/make/dependencies-basic.mk b/reproduce/src/make/dependencies-basic.mk index 52a41d9..1573f39 100644 --- a/reproduce/src/make/dependencies-basic.mk +++ b/reproduce/src/make/dependencies-basic.mk @@ -773,9 +773,9 @@ $(ibdir)/gcc: $(gcc-prerequisites) \ # (SOMETIMES IT CRASHES IN libiberty with g++) AND SOMETIMES IT FINISHES, # SO, MORE TESTS ARE NEEDED ON MAC AND WE'LL USE THE HOST'S COMPILER UNTIL # THEN. - if [ "x$(on_mac_os)" = xyesno ]; then \ - $(call makelink,gfortran); \ + if [ "x$(on_mac_os)" = xyes ]; then \ $(call makelink,g++); \ + $(call makelink,gfortran); \ $(call makelink,gcc,copy); \ else \ rm -f $(ibdir)/gcc* $(ibdir)/g++ $(ibdir)/gfortran $(ibdir)/gcov*;\ @@ -821,4 +821,3 @@ $(ibdir)/gcc: $(gcc-prerequisites) \ done; \ fi; \ fi - -- cgit v1.2.1