[vlc-commits] Contribs: fix gcrypt git init for reconf

Jean-Baptiste Kempf git at videolan.org
Thu Dec 28 09:29:36 CET 2017


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Dec 28 09:23:07 2017 +0100| [d1fdad239e32b601931725d5ff88bd16205695ac] | committer: Jean-Baptiste Kempf

Contribs: fix gcrypt git init for reconf

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d1fdad239e32b601931725d5ff88bd16205695ac
---

 contrib/src/gcrypt/rules.mak | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/contrib/src/gcrypt/rules.mak b/contrib/src/gcrypt/rules.mak
index f912b903de..537e2b3dd9 100644
--- a/contrib/src/gcrypt/rules.mak
+++ b/contrib/src/gcrypt/rules.mak
@@ -69,7 +69,8 @@ endif
 .gcrypt: gcrypt
 	# Reconfiguring this requires a git repo to be available, to
 	# successfully produce a nonempty mym4_revision_dec.
-	git init && git commit --allow-empty -m "dummy commit"
+	git init && git config --local user.email "cone at example.com" && git config --local user.name "Cony Cone" && \
+		git commit --allow-empty -m "dummy commit"
 	$(RECONF)
 	cd $< && $(HOSTVARS) CFLAGS="$(CFLAGS) $(GCRYPT_EXTRA_CFLAGS)" ./configure $(HOSTCONF) $(GCRYPT_CONF)
 	cd $< && $(MAKE) install



More information about the vlc-commits mailing list