aboutsummaryrefslogtreecommitdiffstats
path: root/find-lang.pl
diff options
context:
space:
mode:
Diffstat (limited to 'find-lang.pl')
-rw-r--r--find-lang.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/find-lang.pl b/find-lang.pl
index d87bef9..9b9c7a4 100644
--- a/find-lang.pl
+++ b/find-lang.pl
@@ -34,7 +34,7 @@ my %finallist; # filename => attr, easy way to perform uniq
File::Find::find(
sub {
my $file = substr($File::Find::name, length($buildroot));
- -f $File::Find::name or return;
+ -f $File::Find::name or -l $File::Find::name or return;
debug("next file is %s", $file);
my $langfile = $file;
if ($file =~ m:^((.*/share/locale)/([^/@]+)[^/]*).*/([^/]+)\.mo:) {