aboutsummaryrefslogtreecommitdiff
path: root/reproduce/src/make/dependencies-basic.mk
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2018-11-15 13:59:47 +0000
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2018-11-15 13:59:47 +0000
commit89e580dfd612d216ec7f297a17b77c85a3053f69 (patch)
treeb8cc0f534af9102f12d989bb4d02aab031eb7a31 /reproduce/src/make/dependencies-basic.mk
parentbb563a8fbefbc636d34247df735801a23badc750 (diff)
Static linking flag added to LDFLAGS, using special Bash script
Until now, when a package was to be built statically, we were adding the `--static' option to `CFLAGS'. This was the wrong place to put it! It should be in the linking step (thus `LDFLAGS'). Also, based on Bash's configure script, we are now using the more generic form of `-static' (single dash, not double dash). On the other hand, the `--disable-shared' option isn't available in many of the packages and it is highly redundant with the `-static' option, so it has been removed to avoid an extra warning in such packages.
Diffstat (limited to 'reproduce/src/make/dependencies-basic.mk')
-rw-r--r--reproduce/src/make/dependencies-basic.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/reproduce/src/make/dependencies-basic.mk b/reproduce/src/make/dependencies-basic.mk
index ed6e971..8fbfeaf 100644
--- a/reproduce/src/make/dependencies-basic.mk
+++ b/reproduce/src/make/dependencies-basic.mk
@@ -105,7 +105,8 @@ $(tarballs): $(tdir)/%:
# will be built first.
$(ibdir)/bash: $(tdir)/bash-$(bash-version).tar.gz \
$(ibdir)/make
- $(call gbuild,$(subst $(tdir)/,,$<), bash-$(bash-version), static)
+ $(call gbuild,$(subst $(tdir)/,,$<), bash-$(bash-version), , \
+ --enable-static-link)
$(ibdir)/lzip: $(tdir)/lzip-$(lzip-version).tar.gz
$(call gbuild,$(subst $(tdir)/,,$<), lzip-$(lzip-version), static)