Skip to content

Commit 933333d

Browse files
committed
build: stop updating the catalog on 'all'
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.
1 parent 003127c commit 933333d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

po/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ CATALOGS = $(addsuffix .mo,$(LINGUAS))
99

1010
POTFILES= ../*.c ../*.h
1111

12-
all: $(PACKAGE).pot $(CATALOGS)
12+
all: $(CATALOGS)
1313

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

0 commit comments

Comments
 (0)