summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/install/share/po/Makefile3
-rw-r--r--perl-install/standalone/po/Makefile3
2 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/install/share/po/Makefile b/perl-install/install/share/po/Makefile
index 7d444738d..0bbdaf96f 100644
--- a/perl-install/install/share/po/Makefile
+++ b/perl-install/install/share/po/Makefile
@@ -42,3 +42,6 @@ install: $(MOFILES)
clean:
@rm -rf *.mo $(POFILES:%=%t) ../../$(METATASK)
@rmdir ../../share/meta-task
+
+check:
+ for i in *.po; do msgfmt -c $$i -o /dev/null; done
diff --git a/perl-install/standalone/po/Makefile b/perl-install/standalone/po/Makefile
index a76357686..88dd3c899 100644
--- a/perl-install/standalone/po/Makefile
+++ b/perl-install/standalone/po/Makefile
@@ -45,3 +45,6 @@ POTFILES.in:
clean:
@rm -rf *.mo $(POFILES:%=%t) POTFILES.in
+
+check:
+ for i in *.po; do msgfmt -c $$i -o /dev/null; done