From 13a188151374f7242b47fa8ab25562486b5c9631 Mon Sep 17 00:00:00 2001 From: Mohammad Akhlaghi Date: Tue, 18 Dec 2018 15:00:07 +0000 Subject: 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. --- reproduce/src/make/dependencies-basic.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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). -- cgit v1.2.1