aboutsummaryrefslogtreecommitdiff
path: root/reproduce/software/make/basic.mk
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2019-05-09 14:36:18 +0100
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2019-05-09 14:36:18 +0100
commit1b3be9f63e735902d3eef24f5ecac5ae71012602 (patch)
tree019d1a7cbadd89a5714bfe82374cb22b0883bff2 /reproduce/software/make/basic.mk
parent773fc91587b20b2f97a34028302bb077a0acef60 (diff)
Removed extra Binutils from GCC's prerequisites
Until this commit, Binutils was brough up as a GCC prerequisite two times: Once as a special (`host_cc') dependency (for when we want to build GCC), another time as a dependency in every build. The first one is now obsolete: on MacOS systems where we don't build Binutils, we define its symbolic links in the same recipe. With this commit, we remove the first one, so Binutils is always a dependency of GCC.
Diffstat (limited to 'reproduce/software/make/basic.mk')
-rw-r--r--reproduce/software/make/basic.mk1
1 files changed, 0 insertions, 1 deletions
diff --git a/reproduce/software/make/basic.mk b/reproduce/software/make/basic.mk
index cd41221..5f9db43 100644
--- a/reproduce/software/make/basic.mk
+++ b/reproduce/software/make/basic.mk
@@ -1031,7 +1031,6 @@ ifeq ($(host_cc),1)
gcc-prerequisites =
else
gcc-prerequisites = $(tdir)/gcc-$(gcc-version).tar.xz \
- $(ibidir)/binutils \
$(ibidir)/isl \
$(ibidir)/mpc
endif