From: Guillem Jover Date: Mon, 30 Nov 2015 22:00:35 +0000 (+0100) Subject: build: Make git log invocation immune to local configuration X-Git-Tag: 0.8.0~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6e074a2bdc8377a945533d54a0013f5c7f608809;p=thirdparty%2Flibbsd.git build: Make git log invocation immune to local configuration --- 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