summaryrefslogtreecommitdiff
path: root/make/calcdep.pl
diff options
context:
space:
mode:
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-09-16 20:16:26 +0000
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-09-16 20:16:26 +0000
commit558a44bf47370b68b14d0837bfae13c651ecf5c4 (patch)
tree4426a7bdf2225137d3f9a2eac69fc49624c0207f /make/calcdep.pl
parentc90f2b28d2224c1147d51a1d223a7b9082565cc6 (diff)
Merge commands and modules in source, since they are already merged in install
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11734 e03df62e-2008-0410-955e-edbf42e46eb7
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 261b6ec18..d8b4e292b 100755
--- a/make/calcdep.pl
+++ b/make/calcdep.pl
@@ -51,7 +51,7 @@ sub dep_cpp {
my($file, $dfile) = @_;
gendep $file;
my($path,$base) = $file =~ m#^((?:.*/)?)([^/]+)\.cpp# or die "Bad file $file";
- my $ext = $path eq 'modules/' || $path eq 'commands/' ? '.so' : '.o';
+ my $ext = $path eq 'modules/' ? '.so' : '.o';
my $out = "$path$base$ext";
$dfile = "$baseout/$path.$base.d" unless defined $dfile;