diff options
Diffstat (limited to 'make/calcdep.pl')
-rwxr-xr-x | make/calcdep.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/calcdep.pl b/make/calcdep.pl index 8cc2632e3..e042c49d8 100755 --- a/make/calcdep.pl +++ b/make/calcdep.pl @@ -51,7 +51,7 @@ END } opendir my $moddir, 'modules'; - for my $file (readdir $moddir) { + for my $file (sort readdir $moddir) { next if $file =~ /^\./; if (-e "modules/extra/$file" && !-l "modules/$file") { # Incorrect symlink? |