diff options
author | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2019-04-12 19:05:17 +0100 |
---|---|---|
committer | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2019-04-12 19:05:17 +0100 |
commit | 63f33cc71d6774057c6aef0944138cfb469204bc (patch) | |
tree | 3bb743d9f8350b4c205145fbcdd2466855dbc02c /reproduce/src/make | |
parent | fcfe32775f72550ebb6d883b95cf50a1be84c451 (diff) |
Minor typo corrections in previous commits
Until now, even though `file' was a dependency of `gcc', it was still
listed as a `top-level-programs'. Also, we weren't including the new
`tex/dependencies' in the distribution tarball (with `make dist').
With this commit, both issues are solved and also, as a cosmetic change,
the GCC prerequisites of the same line-length were ordered alphabetically.
Diffstat (limited to 'reproduce/src/make')
-rw-r--r-- | reproduce/src/make/dependencies-basic.mk | 6 | ||||
-rw-r--r-- | reproduce/src/make/initialize.mk | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/reproduce/src/make/dependencies-basic.mk b/reproduce/src/make/dependencies-basic.mk index 9e277f7..81a17cd 100644 --- a/reproduce/src/make/dependencies-basic.mk +++ b/reproduce/src/make/dependencies-basic.mk @@ -67,7 +67,7 @@ export CPPFLAGS := -I$(idir)/include $(CPPFLAGS) export LD_LIBRARY_PATH := $(ildir):$(LD_LIBRARY_PATH) # Define the programs that don't depend on any other. -top-level-programs = low-level-links wget gcc file +top-level-programs = low-level-links wget gcc all: $(foreach p, $(top-level-programs), $(ibidir)/$(p)) @@ -815,9 +815,9 @@ $(ibidir)/gcc: $(gcc-prerequisites) \ $(ibidir)/grep \ $(ibidir)/which \ $(ibidir)/glibtool \ - $(ibidir)/findutils \ + $(ibidir)/coreutils \ $(ibidir)/diffutils \ - $(ibidir)/coreutils + $(ibidir)/findutils # GCC builds is own libraries in '$(idir)/lib64'. But all other # libraries are in '$(idir)/lib'. Since this pipeline is only for a diff --git a/reproduce/src/make/initialize.mk b/reproduce/src/make/initialize.mk index 286e64e..4e59712 100644 --- a/reproduce/src/make/initialize.mk +++ b/reproduce/src/make/initialize.mk @@ -252,6 +252,7 @@ $(packagecontents): | $(texdir) cp tex/tikz/*.pdf $$dir/tex/tikz cp -r reproduce/!(build) $$dir/reproduce cp -r tex/pipeline/!($(packagebasename)) $$dir/tex/pipeline + cp -r tex/dependencies $$dir/tex/dependencies # Clean up un-necessary/local files: 1) the $(texdir)/build* # directories (when building in a group structure, there will be |