aboutsummaryrefslogtreecommitdiff
path: root/reproduce/src/make
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2018-12-18 15:20:21 +0000
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2018-12-18 15:20:21 +0000
commit9b03a12aa39488d5350c71640f3e2e3feabccc0b (patch)
tree20d9486e496ab54af24c4145eb231e8f01e120cf /reproduce/src/make
parent13a188151374f7242b47fa8ab25562486b5c9631 (diff)
Forced linking of bin/sh and verbose Make in Git
While checking the build of the previous commit, a failure happened when linking `reproduce/build/dependencies/installed/bin/sh' with the built Bash (because the symbolic link already existed!). So a `-f' flag was added to `ln' to just change it without complaining. I also noticed that the Git build was also not in verbose mode. So this has also been corrected.
Diffstat (limited to 'reproduce/src/make')
-rw-r--r--reproduce/src/make/dependencies-basic.mk2
-rw-r--r--reproduce/src/make/dependencies.mk5
2 files changed, 4 insertions, 3 deletions
diff --git a/reproduce/src/make/dependencies-basic.mk b/reproduce/src/make/dependencies-basic.mk
index 70a9c68..8717656 100644
--- a/reproduce/src/make/dependencies-basic.mk
+++ b/reproduce/src/make/dependencies-basic.mk
@@ -451,7 +451,7 @@ endif
# Just to be sure that the installation step above went well,
# before making the link, we'll see if the file actually exists
# there.
- if [ -f $@ ]; then ln -s $@ $(ibdir)/sh; fi
+ if [ -f $@ ]; then ln -fs $@ $(ibdir)/sh; fi
diff --git a/reproduce/src/make/dependencies.mk b/reproduce/src/make/dependencies.mk
index 2b5a118..6a8e18e 100644
--- a/reproduce/src/make/dependencies.mk
+++ b/reproduce/src/make/dependencies.mk
@@ -318,8 +318,9 @@ $(ibdir)/flock: $(tdir)/flock-$(flock-version).tar.xz
$(call gbuild, $<, flock-$(flock-version), static)
$(ibdir)/git: $(tdir)/git-$(git-version).tar.xz
- $(call gbuild, $<, git-$(git-version), static, \
- --without-tcltk --with-shell=$(ibdir)/bash)
+ $(call gbuild, $<, git-$(git-version), static, \
+ --without-tcltk --with-shell=$(ibdir)/bash, \
+ V=1)
# The order of dependencies is based on how long they take to build (how
# large they are): Libgit2 depends on CMake which takes a VERY long time to