summaryrefslogtreecommitdiff
path: root/make/calcdep.pl
diff options
context:
space:
mode:
Diffstat (limited to 'make/calcdep.pl')
-rwxr-xr-xmake/calcdep.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/make/calcdep.pl b/make/calcdep.pl
index d9242b098..890d8d265 100755
--- a/make/calcdep.pl
+++ b/make/calcdep.pl
@@ -37,9 +37,10 @@ all: bin/inspircd modules
END
my @core_deps;
- for my $file (<*.cpp>, <modes/*.cpp>, "socketengines/$ENV{SOCKETENGINE}.cpp", "threadengines/threadengine_pthread.cpp") {
+ for my $file (<*.cpp>, <modes/*.cpp>, <socketengines/*.cpp>, "threadengines/threadengine_pthread.cpp") {
my $out = find_output $file;
dep_cpp $file, $out;
+ next if $file =~ m#^socketengines/# && $file ne "socketengines/$ENV{SOCKETENGINE}.cpp";
push @core_deps, $out;
}