summaryrefslogtreecommitdiff
path: root/make/calcdep.pl
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2013-04-05 16:39:40 +0100
committerPeter Powell <petpow@saberuk.com>2013-04-05 16:39:40 +0100
commit362f3009ac9a8fc7e1cedea66aa72abcdf52d934 (patch)
tree266065ea765be60f52a55208790c52872353a425 /make/calcdep.pl
parentbb3aa2fb37071f48a5312df8688c0a6990644fbb (diff)
Merge inspircd_{config,version}.h into a single header file.
Diffstat (limited to 'make/calcdep.pl')
-rwxr-xr-xmake/calcdep.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/calcdep.pl b/make/calcdep.pl
index 4a759a24a..e578f585c 100755
--- a/make/calcdep.pl
+++ b/make/calcdep.pl
@@ -199,7 +199,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';
+ next if $inc eq 'config.h' && $f eq '../include/inspircd.h';
my $found = 0;
for my $loc ("$basedir/$inc", "../include/$inc") {
next unless -e $loc;