summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2021-07-22 13:05:55 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2021-07-22 13:05:55 -0700
commitdae59cb26302fe384158a04b5fe4b204d95dfef0 (patch)
treeaa0c8877255add003f324562a98f4b0534a1ea78 /Makefile
parentMerge branch 'ab/send-email-optim' (diff)
parentci: accelerate the checkout (diff)
downloadtgif-dae59cb26302fe384158a04b5fe4b204d95dfef0.tar.xz
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