From 6e074a2bdc8377a945533d54a0013f5c7f608809 Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Mon, 30 Nov 2015 23:00:35 +0100 Subject: [PATCH] build: Make git log invocation immune to local configuration --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 8e50b1d..b839ae1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -12,5 +12,5 @@ EXTRA_DIST = \ dist-hook: echo $(VERSION) >$(distdir)/.dist-version if [ -d .git ]; then \ - git log --stat -C >$(distdir)/ChangeLog; \ + XDG_CONFIG_HOME= HOME= git log --stat -C >$(distdir)/ChangeLog; \ fi -- 2.47.3