summaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
Diffstat (limited to 'make')
-rwxr-xr-xmake/calcdep.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/make/calcdep.pl b/make/calcdep.pl
index 484c98cbd..c2e9b9510 100755
--- a/make/calcdep.pl
+++ b/make/calcdep.pl
@@ -16,6 +16,7 @@ sub gendep {
while (<$in>) {
if (/^\s*#\s*include\s*"([^"]+)"/) {
my $inc = $1;
+ next if $inc eq 'inspircd_version.h' && $f eq '../include/inspircd.h';
my $found = 0;
for my $loc ("$basedir/$inc", "../include/$inc") {
next unless -e $loc;