build: rework i18n-scan.pl defined checks
authorJo-Philipp Wich <jow@openwrt.org>
Mon, 2 Apr 2012 23:57:11 +0000 (23:57 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Mon, 2 Apr 2012 23:57:11 +0000 (23:57 +0000)
build/i18n-scan.pl

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