summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2020-11-20 15:43:09 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2020-11-20 16:17:16 +0100
commit589b290a99dbcf3a01acc36289e15b902af89393 (patch)
tree312baff683025f709ddd441314784f28578c0cf4
parent19259b3068ee7bf19bc56e0efa61d818c9560392 (diff)
downloaddrakx-589b290a99dbcf3a01acc36289e15b902af89393.tar
drakx-589b290a99dbcf3a01acc36289e15b902af89393.tar.gz
drakx-589b290a99dbcf3a01acc36289e15b902af89393.tar.bz2
drakx-589b290a99dbcf3a01acc36289e15b902af89393.tar.xz
drakx-589b290a99dbcf3a01acc36289e15b902af89393.zip
Add "check" rule
-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