Skip to content

Commit

Permalink
build: stop updating the catalog on 'all'
Browse files Browse the repository at this point in the history
While it can be useful to keep the translation catalog up-to-date,
updating it every time a file is changed is a bit wasteful.

Hence, do not ensure that the pot file is updated on 'all'. This will
likely require some manual update from time to time to make sure that
the translatable messages are still up-to-date, however they do not
change that often in linuxlogo.
  • Loading branch information
pinotree committed Jul 14, 2022
1 parent 4847802 commit 1cb617f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion po/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ CATALOGS = $(addsuffix .mo,$(LINGUAS))

POTFILES= ../*.c ../*.h

all: $(PACKAGE).pot $(CATALOGS)
all: $(CATALOGS)

$(PACKAGE).pot: $(POTFILES)
$(XGETTEXT) --output=$@ --default-domain=$(PACKAGE) --add-comments --keyword=_ --keyword=S_ $^
Expand Down

0 comments on commit 1cb617f

Please sign in to comment.