summaryrefslogtreecommitdiffhomepage
path: root/build/i18n-scan.pl
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-11-01 01:01:47 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-11-01 01:01:47 +0000
commit4ad686d73208a760ed8d2beaad03198e455d7623 (patch)
tree0d2fe3e10bf5f65d7231a58557dc9855443d07e6 /build/i18n-scan.pl
parent58b3b2156fa807332a102e7145d18eec62c69f4b (diff)
build: allow multiple search directories in i18n-scan.pl
Diffstat (limited to 'build/i18n-scan.pl')
-rwxr-xr-xbuild/i18n-scan.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/i18n-scan.pl b/build/i18n-scan.pl
index 8523ced1a..a31952bbb 100755
--- a/build/i18n-scan.pl
+++ b/build/i18n-scan.pl
@@ -4,7 +4,7 @@ use strict;
use warnings;
use Text::Balanced qw(extract_bracketed extract_delimited extract_tagged);
-@ARGV == 1 || die "Usage: $0 <source direcory>\n";
+@ARGV >= 1 || die "Usage: $0 <source direcory>\n";
my %stringtable;
@@ -31,7 +31,7 @@ sub dec_tpl_str
}
-if( open F, "find $ARGV[0] -type f '(' -name '*.htm' -or -name '*.lua' ')' |" )
+if( open F, "find @ARGV -type f '(' -name '*.htm' -or -name '*.lua' ')' |" )
{
while( defined( my $file = readline F ) )
{