diff options
author | Manuel Munz <freifunk@somakoma.de> | 2010-12-11 17:14:13 +0000 |
---|---|---|
committer | Manuel Munz <freifunk@somakoma.de> | 2010-12-11 17:14:13 +0000 |
commit | 80b5a4b6f88b8ecbcb27bfd062b37e249e78ced9 (patch) | |
tree | a864ceb454a26541282b7c315138c30f93cab451 /build/i18n-scan.pl | |
parent | 7210e6470849e003e3cb2df80ca8b4f3966a6239 (diff) |
build/: Replace -or with -o #133
Diffstat (limited to 'build/i18n-scan.pl')
-rwxr-xr-x | build/i18n-scan.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/i18n-scan.pl b/build/i18n-scan.pl index 3b61bc3843..9edb529ef6 100755 --- a/build/i18n-scan.pl +++ b/build/i18n-scan.pl @@ -32,7 +32,7 @@ sub dec_tpl_str } -if( open F, "find @ARGV -type f '(' -name '*.htm' -or -name '*.lua' ')' |" ) +if( open F, "find @ARGV -type f '(' -name '*.htm' -o -name '*.lua' ')' |" ) { while( defined( my $file = readline F ) ) { |