aboutsummaryrefslogtreecommitdiff
path: root/reproduce/src/make/initialize.mk
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2018-11-26 18:09:35 +0000
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2018-11-26 19:09:49 +0000
commit5bb72e98b312d22191b13f3821f258449e548516 (patch)
tree045e4a33502581208a86f271d3ab39f6ed10ee5f /reproduce/src/make/initialize.mk
parent00b4893b2829ddb0e9050ae7de6af7cb4d4d8304 (diff)
High-level dependencies build without system's PATH
The high-level dependencies are now built without having access to the system's PATH. To do this, all the necessary software that we aren't building ourselves are now brought into the installed `bin/' directory using a symbolic link to the corresponding software on the host. To do this, it was also necessary to increase the number of basic/low-level packages that we are building, and add several more (Diffutils and Findutils). With this process in place, we now have a list of the exact software packages that we are not building our selves, enabling easy building of all such dependencies in the future.
Diffstat (limited to 'reproduce/src/make/initialize.mk')
-rw-r--r--reproduce/src/make/initialize.mk10
1 files changed, 7 insertions, 3 deletions
diff --git a/reproduce/src/make/initialize.mk b/reproduce/src/make/initialize.mk
index 41a5e05..61f28cf 100644
--- a/reproduce/src/make/initialize.mk
+++ b/reproduce/src/make/initialize.mk
@@ -191,18 +191,22 @@ $(mtexdir)/initialize.tex: | $(mtexdir)
@echo "\newcommand{\bdir}{$(BDIR)}" >> $@
# Versions of programs (same order as 'dependency-versions.mk').
+ $(call pvcheck, awk, $(gawk-version), GNU AWK, gawkversion)
$(call pvcheck, bash, $(bash-version), GNU Bash, bashversion)
$(call pvcheck, cmake, $(cmake-version), CMake, cmakeversion)
$(call pvcheck, curl, $(curl-version), cURL, curlversion)
- $(call pvcheck, ls, $(coreutils-version), GNU Coreutils, \
- coreutilsversion)
- $(call pvcheck, awk, $(gawk-version), GNU AWK, gawkversion)
+ $(call pvcheck, diff, $(diffutils-version), GNU Diffutils, \
+ diffutilsversion)
+ $(call pvcheck, find, $(findutils-version), GNU Findutils, \
+ findutilsversion)
$(call pvcheck, gs, $(ghostscript-version), GPL Ghostscript, \
ghostscriptversion)
$(call pvcheck, git, $(git-version), Git, gitversion)
$(call pvcheck, grep, $(grep-version), GNU Grep, grepversion)
$(call pvcheck, libtool, $(libtool-version), GNU Libtool, \
libtoolversion)
+ $(call pvcheck, ls, $(coreutils-version), GNU Coreutils, \
+ coreutilsversion)
$(call pvcheck, lzip, $(lzip-version), Lzip, lzipversion)
$(call pvcheck, make, $(make-version), GNU Make, makeversion)
$(call pvcheck, sed, $(sed-version), GNU SED, sedversion)