From 08602e223bfdf7d5d5e4899958540bae923d1027 Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Tue, 21 Nov 2017 22:50:59 -0500 Subject: [PATCH] Add tcl/tk BuildRequires The git-gui build tries to use tclsh to generate an index file. It falls back to a static list, which is why this wasn't noticed before. It's not a real problem, but git may soon also try to test that wish is installed before building and installing git-gui and gitk, so this helps prepare for that future. --- git.spec | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/git.spec b/git.spec index 4ca1939..1afacda 100644 --- a/git.spec +++ b/git.spec @@ -118,6 +118,8 @@ BuildRequires: perl-generators BuildRequires: perl(Test) BuildRequires: openssl-devel BuildRequires: zlib-devel >= 1.2 +BuildRequires: tcl +BuildRequires: tk %if %{bashcomp_pkgconfig} BuildRequires: pkgconfig(bash-completion) %endif @@ -793,6 +795,9 @@ rm -rf %{buildroot} # No files for you! %changelog +* Tue Nov 21 2017 Todd Zullinger +- Add tcl/tk BuildRequires + * Tue Nov 07 2017 Todd Zullinger - 2.15.0-2 - Fix git-clone memory exhaustion (CVE-2017-15298) Resolves: #1510455, #1510457