summaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-09-30 00:54:17 +0000
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-09-30 00:54:17 +0000
commit6b27fae945e5310a76cb7fa2a5ff0059cd436ac9 (patch)
tree727419add228e1fe85be601bd6233148c9fff0f8 /make
parentc7be5019f590e130e61d88f105ea04e813de1c1e (diff)
Sort the module list to give a useful indicator of compile progress
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11779 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'make')
-rwxr-xr-xmake/calcdep.pl2
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?