Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-07-22 23:05:55 +0300
committerJunio C Hamano <gitster@pobox.com>2021-07-22 23:05:55 +0300
commitdae59cb26302fe384158a04b5fe4b204d95dfef0 (patch)
treeaa0c8877255add003f324562a98f4b0534a1ea78 /Makefile
parent8de2e2e41b23c466793a67966d20bad67b1263cd (diff)
parent0dc787a9f23f78902b8792e44ff8187398e49de8 (diff)
Merge branch 'js/ci-windows-update'
GitHub Actions / CI update. * js/ci-windows-update: ci: accelerate the checkout ci (vs-build): build with NO_GETTEXT artifacts-tar: respect NO_GETTEXT ci (windows): transfer also the Git-tracked files to the test jobs ci: upgrade to using actions/{up,down}load-artifacts v2 ci (vs-build): use `cmd` to copy the DLLs, not `powershell` ci: use the new GitHub Action to download git-sdk-64-minimal
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c7c46c017d..e79534b192 100644
--- a/Makefile
+++ b/Makefile
@@ -2687,10 +2687,13 @@ po/git.pot: $(GENERATED_H) FORCE
.PHONY: pot
pot: po/git.pot
+ifdef NO_GETTEXT
+POFILES :=
+MOFILES :=
+else
POFILES := $(wildcard po/*.po)
MOFILES := $(patsubst po/%.po,po/build/locale/%/LC_MESSAGES/git.mo,$(POFILES))
-ifndef NO_GETTEXT
all:: $(MOFILES)
endif