diff options
author | Peter Powell <petpow@saberuk.com> | 2013-04-05 16:39:40 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2013-04-05 16:39:40 +0100 |
commit | 362f3009ac9a8fc7e1cedea66aa72abcdf52d934 (patch) | |
tree | 266065ea765be60f52a55208790c52872353a425 /make/calcdep.pl | |
parent | bb3aa2fb37071f48a5312df8688c0a6990644fbb (diff) |
Merge inspircd_{config,version}.h into a single header file.
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 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; |