diff options
author | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2019-04-04 16:52:29 +0100 |
---|---|---|
committer | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2019-04-04 16:52:29 +0100 |
commit | 118e6c6d3a950e4def65c64772b38b7952039b9c (patch) | |
tree | e14acb7f86f6d99143d719171f064c60158ea860 /reproduce | |
parent | 0f4a597d95f92e3a957fce7702fb39e0698ccf17 (diff) |
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).
Diffstat (limited to 'reproduce')
-rw-r--r-- | reproduce/src/make/dependencies-basic.mk | 5 |
1 files changed, 2 insertions, 3 deletions
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 - |