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

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


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

Contribs: fix gcrypt git init for reconf

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

 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..3a63ba526f 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 config user.email "cone at example.com" && git config user.name "Cony Cone" \
+		git init && 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