diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-01-16 00:09:15 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-01-16 00:09:15 +0000 |
commit | a7f312c9b2658c3a4ec5fce8ceb421d8dec11fb1 (patch) | |
tree | bff2fd4458b98fbfa3e89530f6ca9a3c4e9d4297 /perl-install | |
parent | 375dabb5eb52408f09ba44b62469fb5884d75c50 (diff) | |
download | drakx-a7f312c9b2658c3a4ec5fce8ceb421d8dec11fb1.tar drakx-a7f312c9b2658c3a4ec5fce8ceb421d8dec11fb1.tar.gz drakx-a7f312c9b2658c3a4ec5fce8ceb421d8dec11fb1.tar.bz2 drakx-a7f312c9b2658c3a4ec5fce8ceb421d8dec11fb1.tar.xz drakx-a7f312c9b2658c3a4ec5fce8ceb421d8dec11fb1.zip |
don't yell when checking for "$" in DrakX.pot and only finding "\$"
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/share/po/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/share/po/Makefile b/perl-install/share/po/Makefile index 4088668cb..3166e9447 100644 --- a/perl-install/share/po/Makefile +++ b/perl-install/share/po/Makefile @@ -48,7 +48,7 @@ clean: @rm -rf drakx-help.xml .memdump doc empty.po tmp.* messages tmp.pot *.mo $(POFILES:%=%t) check: - @grep -F '$$' DrakX.pot && { echo "bad translation strings (contains \$$) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"; exit 1; } ||: + @grep '[^\\]\$$' DrakX.pot && { echo 'bad translation strings (contains $$) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^'; exit 1; } ||: verif: perl -ne '/^\s*#/ or $$i += my @l = /\b__?\(/g; END { print "$$i\n" }' $(PMSFILES) |