diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-12-18 15:07:10 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-12-18 15:07:10 -0800 |
commit | f4d8e191230b3d233005720085092b97e9bf32f1 (patch) | |
tree | 6b93153c3b0665a48f44a0991937da8edb910e8b /git-gui/Makefile | |
parent | ba2aa15129e59f248d8cdd30404bc78b5178f61d (diff) | |
parent | 7b0cfe156e1f1fbb77ab35d55d48eef41625944d (diff) | |
download | git-f4d8e191230b3d233005720085092b97e9bf32f1.tar.gz |
Merge https://github.com/prati0100/git-gui
* https://github.com/prati0100/git-gui:
git-gui: use gray background for inactive text widgets
git-gui: Fix selected text colors
Makefile: conditionally include GIT-VERSION-FILE
git-gui: fix colored label backgrounds when using themed widgets
git-gui: ssh-askpass: add a checkbox to show the input text
git-gui: update Russian translation
git-gui: use commit message template
git-gui: Only touch GITGUI_MSG when needed
Diffstat (limited to 'git-gui/Makefile')
-rw-r--r-- | git-gui/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/git-gui/Makefile b/git-gui/Makefile index f10caedaa7..56c85a85c1 100644 --- a/git-gui/Makefile +++ b/git-gui/Makefile @@ -9,7 +9,9 @@ all:: GIT-VERSION-FILE: FORCE @$(SHELL_PATH) ./GIT-VERSION-GEN +ifneq ($(MAKECMDGOALS),clean) -include GIT-VERSION-FILE +endif uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not') uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not') |