diff options
author | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2018-12-18 15:00:07 +0000 |
---|---|---|
committer | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2018-12-18 15:00:07 +0000 |
commit | 13a188151374f7242b47fa8ab25562486b5c9631 (patch) | |
tree | 25cf34e6a7214a83d13f3983696b171c47d8d426 /reproduce | |
parent | 824f5245e80a6b5641fb6b5ce64683fcbc577152 (diff) |
Gzip compiles in verbose mode to be clear and help in debugs
While we were testing this pipeline on a Mac OS system, we found and
reported a problem in Gzip's build (bug #33689). However, since the Gzip
build is not verbose, it was necessary to run its `make' with
`V=1'. Generally, since almost all the programs are built in verbose mode
(where you can see the compilation commands), we have also set this flag in
any build to be clear and make it easier to spot bugs in the future.
Diffstat (limited to 'reproduce')
-rw-r--r-- | reproduce/src/make/dependencies-basic.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reproduce/src/make/dependencies-basic.mk b/reproduce/src/make/dependencies-basic.mk index 823a515..70a9c68 100644 --- a/reproduce/src/make/dependencies-basic.mk +++ b/reproduce/src/make/dependencies-basic.mk @@ -249,7 +249,7 @@ $(ibdir)/low-level-links: | $(ibdir) $(ildir) # the source code tarballs of each program. First, we'll build the # necessary programs, then we'll build GNU Tar. $(ibdir)/gzip: $(tdir)/gzip-$(gzip-version).tar.gz - $(call gbuild, $<, gzip-$(gzip-version), static) + $(call gbuild, $<, gzip-$(gzip-version), static, , V=1) # GNU Lzip: For a static build, the `-static' flag should be given to # LDFLAGS on the command-line (not from the environment). |