diff options
Diffstat (limited to 'make')
-rwxr-xr-x | make/calcdep.pl | 2 | ||||
-rw-r--r-- | make/template/main.mk | 3 |
2 files changed, 2 insertions, 3 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; diff --git a/make/template/main.mk b/make/template/main.mk index 32b7e4803..4930fa7e3 100644 --- a/make/template/main.mk +++ b/make/template/main.mk @@ -276,8 +276,7 @@ configureclean: rm -f .config.cache rm -f BSDmakefile rm -f GNUmakefile - rm -f include/inspircd_config.h - rm -f include/inspircd_version.h + rm -f include/config.h rm -f inspircd -rm -f org.inspircd.plist |