aboutsummaryrefslogtreecommitdiff
path: root/reproduce/src/make/dependencies-build-rules.mk
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2018-11-29 02:38:40 +0000
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2018-11-29 02:38:40 +0000
commitc2d4bd4226770da03c4796c7de77bee28ec79319 (patch)
tree011d99e0aa3fded1c1fc83e4dfbafab52f44c0d1 /reproduce/src/make/dependencies-build-rules.mk
parentb5a49ad43f275dde864d429b3765156367bd8f8c (diff)
GCC is now installed by the pipeline
The pipeline now installs GCC and all its necessary prerequisites.
Diffstat (limited to 'reproduce/src/make/dependencies-build-rules.mk')
-rw-r--r--reproduce/src/make/dependencies-build-rules.mk7
1 files changed, 4 insertions, 3 deletions
diff --git a/reproduce/src/make/dependencies-build-rules.mk b/reproduce/src/make/dependencies-build-rules.mk
index c0561a7..9ff3463 100644
--- a/reproduce/src/make/dependencies-build-rules.mk
+++ b/reproduce/src/make/dependencies-build-rules.mk
@@ -53,11 +53,12 @@ gbuild = if [ x$(static_build) = xyes ] && [ $(3)x = staticx ]; then \
fi; \
check="$(6)"; \
if [ x"$$check" = x ]; then check="echo Skipping-check"; fi; \
+ if [ -f $(ibdir)/bash ]; then shellop="SHELL=$(ibdir)/bash"; fi; \
cd $(ddir) && rm -rf $(2) && tar xf $(1) && cd $(2) && \
- ./configure $(4) --prefix=$(idir) && \
- make $(5) && \
+ ./configure $(4) "$$shellop" --prefix=$(idir) && \
+ make "$$shellop" $(5) && \
$$check && \
- make install&& \
+ make "$$shellop" install && \
cd .. && rm -rf $(2)