From 4fe1816110e6dd5a0163a5e583114b956a339dee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Mon, 2 Sep 2019 11:18:58 +0200 Subject: [PATCH] Correct configuring git identity Commiter identity is also needed. --- perl.spec | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/perl.spec b/perl.spec index e205e58..733eac2 100644 --- a/perl.spec +++ b/perl.spec @@ -2872,8 +2872,10 @@ Perl extension for Version Objects # PATCH-perl-134329-Use-after-free-in-regcomp.c.patch is a binary patch git init-db . git config --replace-all gc.auto 0 # Prevent from racing with "rm -rf .git" +git config --replace-all user.email '' +git config --replace-all user.name 'Nobody' git add . -git commit --author='Nobody ' --message 'Import' +git commit --message 'Import' git am < %{PATCH58} rm -rf .git # Perl tests examine a git repository %patch59 -p1