build: rework checks in i18n-scan.pl
authorJo-Philipp Wich <jow@openwrt.org>
Tue, 3 Apr 2012 00:35:54 +0000 (00:35 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Tue, 3 Apr 2012 00:35:54 +0000 (00:35 +0000)
build/i18n-scan.pl

index 1243545..781ac64 100755 (executable)
@@ -60,7 +60,7 @@ if( open F, "find @ARGV -type f '(' -name '*.htm' -o -name '*.lua' ')' |" )
 
                                if( $code =~ /^['"]/ )
                                {
-                                       while( defined $sub && length($sub) > 0 )
+                                       while( defined $sub )
                                        {
                                                ( $sub, $code ) = extract_delimited($code, q{'"}, q{\s*(?:\.\.\s*)?});
 
@@ -68,6 +68,10 @@ if( open F, "find @ARGV -type f '(' -name '*.htm' -o -name '*.lua' ')' |" )
                                                {
                                                        $res .= substr $sub, 1, length($sub) - 2;
                                                }
+                                               else
+                                               {
+                                                       undef $sub;
+                                               }
                                        }
                                }
                                elsif( $code =~ /^(\[=*\[)/ )