diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-07-22 13:05:55 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-07-22 13:05:55 -0700 |
commit | dae59cb26302fe384158a04b5fe4b204d95dfef0 (patch) | |
tree | aa0c8877255add003f324562a98f4b0534a1ea78 /Makefile | |
parent | Merge branch 'ab/send-email-optim' (diff) | |
parent | ci: accelerate the checkout (diff) | |
download | tgif-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-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |