summaryrefslogtreecommitdiffstats
path: root/live/draklive-install/po/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'live/draklive-install/po/Makefile')
-rw-r--r--live/draklive-install/po/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/live/draklive-install/po/Makefile b/live/draklive-install/po/Makefile
index 6572010d5..b97eddd66 100644
--- a/live/draklive-install/po/Makefile
+++ b/live/draklive-install/po/Makefile
@@ -2,7 +2,8 @@ NAME = draklive-install
localedir = ${prefix}/share/locale
PL_FILES = ../$(NAME) $(shell find .. -type f -name "*pm")
-POFILES = $(shell for i in ../../../perl-install/share/po/*.po; do basename $$i; done)
+MERGE_POFILES = $(shell for i in ../../../perl-install/share/po/*.po; do basename $$i; done)
+POFILES = $(wildcard *.po)
MOFILES = $(POFILES:%.po=%.mo)
LANGS = $(POFILES:%.po=%)
@@ -12,7 +13,7 @@ all: $(NAME).pot $(POFILES) $(MOFILES)
msgfmt -o $@ $<
merge: $(NAME).pot
- @for n in $(POFILES); do \
+ @for n in $(MERGE_POFILES); do \
echo "Merging $$n"; \
msgmerge "$$n" $< > "$$n"t; \
mv -f "$$n"t "$$n"; \