mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-03 18:14:25 +03:00
* update.pl: When using `--maintain' only scan ordinary files.
This commit is contained in:
parent
49d8cd7f50
commit
f76fdaf75a
@ -1,5 +1,7 @@
|
||||
2001-06-07 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* update.pl: When using `--maintain' only scan ordinary files.
|
||||
|
||||
* ru.po: Update.
|
||||
* POTFILES.in: Add src/charsets.c, src/selcodepage.c and
|
||||
src/setup.c.
|
||||
|
@ -62,7 +62,7 @@ if ($LANG=~/^-(.)*/){
|
||||
|
||||
elsif ($LANG eq "--maintain" || "$LANG" eq "-M"){
|
||||
|
||||
$a="find ../ -print | egrep '.*\\.(c|y|cc|c++|h|gob)' ";
|
||||
$a="find ../ -type f -print | egrep '.*\\.(c|y|cc|c++|h|gob)' ";
|
||||
|
||||
open(BUF2, "POTFILES.in") || die "update.pl: there's not POTFILES.in!!!\n";
|
||||
print "Searching for missing _(\" \") entries...\n";
|
||||
|
Loading…
Reference in New Issue
Block a user