Skip to content

Commit

Permalink
Allow to check ignored locales + add comment about them
Browse files Browse the repository at this point in the history
  • Loading branch information
n-peugnet committed Jun 2, 2024
1 parent e10b0d4 commit eae3a9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sphinx/locale/Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Ignore locales that are known failures. See utils/babel_runner.py
IGNORED = ta
LOCALES = $(filter-out $(IGNORED),$(patsubst %/LC_MESSAGES,%,$(wildcard */LC_MESSAGES)))
POFILES = $(LOCALES:%=%/LC_MESSAGES/sphinx.po)
POFILES = $(wildcard */LC_MESSAGES/sphinx.po)
CHECK = $(POFILES:.po=.check)

.PHONY: all
check: $(CHECK)
check: $(filter-out $(IGNORED:=/LC_MESSAGES/sphinx.check),$(CHECK))

.PHONY: $(CHECK)
$(CHECK): %.check: %.po
Expand Down

0 comments on commit eae3a9d

Please sign in to comment.