X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=make%2Frun-cc.pl;h=4c3ccbb415e25ecd4446b0318031eec8d40964ea;hb=eac05f8d05ce2e3878ac4a51675b11e64831adac;hp=e5f29ec7f136139b1f3a01b99bc17a6e85518328;hpb=a4e89e70e21dfa5cecef7df3efc1edffb5cd92bd;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/make/run-cc.pl b/make/run-cc.pl index e5f29ec7f..4c3ccbb41 100755 --- a/make/run-cc.pl +++ b/make/run-cc.pl @@ -1,4 +1,16 @@ -#!/usr/bin/perl +#!/usr/bin/env 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)! ### @@ -63,6 +75,7 @@ my @msgfilters = ( [ qr/^.* warning: / => sub { my ($msg) = @_; my $str = $location . "\e[33;1m$msg\e[0m\n"; + $showncmdline = 1; $location = ""; return $str; } ], @@ -112,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.