Message ID | 29b0632e30aba9bc2e071f572fb1067108bcae8c.1603725003.git.frederic.pierret@qubes-os.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Improve reproducible builds | expand |
On 30.10.2020 13:03, Frédéric Pierret (fepitre) wrote: > This is for improving reproducible builds. > > Signed-off-by: Frédéric Pierret (fepitre) <frederic.pierret@qubes-os.org> Acked-by: Jan Beulich <jbeulich@suse.com> Albeit I'd like to ask for the title to actually mention whose gzip time stamp it is that gets squashed. Perhaps "xen: don't have timestamp inserted in config.gz"? Jan
diff --git a/xen/common/Makefile b/xen/common/Makefile index 06881d023c..32cd650ba8 100644 --- a/xen/common/Makefile +++ b/xen/common/Makefile @@ -77,7 +77,7 @@ obj-$(CONFIG_HAS_DEVICE_TREE) += libfdt/ CONF_FILE := $(if $(patsubst /%,,$(KCONFIG_CONFIG)),$(XEN_ROOT)/xen/)$(KCONFIG_CONFIG) config.gz: $(CONF_FILE) - gzip -c $< >$@ + gzip -n -c $< >$@ config_data.o: config.gz
This is for improving reproducible builds. Signed-off-by: Frédéric Pierret (fepitre) <frederic.pierret@qubes-os.org> --- xen/common/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)