X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=make%2Frun-cc.pl;h=d5c62333ced8fc8af5d42b828ccfe2e8bdbce535;hb=490446040d80d144e64ddf8e52515df1f40f1fd7;hp=d637ba8c95673ed50e2a65417f30a642bb7b0a62;hpb=b9a3d9e71fda55787cb754c702fe343186d175e7;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/make/run-cc.pl b/make/run-cc.pl index d637ba8c9..d5c62333c 100755 --- a/make/run-cc.pl +++ b/make/run-cc.pl @@ -1,5 +1,17 @@ #!/usr/bin/perl +# +------------------------------------+ +# | Inspire Internet Relay Chat Daemon | +# +------------------------------------+ +# +# InspIRCd: (C) 2002-2010 InspIRCd Development Team +# See: http://wiki.inspircd.org/Credits +# +# This program is free but copyrighted software; see +# the file COPYING for details. +# +# --------------------------------------------------- + ### THIS IS DESIGNED TO BE RUN BY MAKE! DO NOT RUN FROM THE SHELL (because it MIGHT sigterm the shell)! ### use strict; @@ -113,14 +125,18 @@ if ($cc eq "ar") { { if ($n =~ /\.cpp$/) { + my $f = $n; + if (defined $ENV{SOURCEPATH}) { + $f =~ s#^$ENV{SOURCEPATH}/src/##; + } if ($action eq "BUILD") { - $name .= " " . $n; + $name .= " " . $f; } else { $action = "BUILD"; - $name = $n; + $name = $f; } } elsif ($action eq "BUILD") # .cpp has priority.