summaryrefslogtreecommitdiff
path: root/make/run-cc.pl
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-04-22 12:26:05 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-04-22 12:26:05 +0000
commitb9a3d9e71fda55787cb754c702fe343186d175e7 (patch)
tree278e1a34e701486d4f1224725f60fc4b76e57b54 /make/run-cc.pl
parent6a9ca88564947fff4ab0f8ef34238680fda93ed8 (diff)
Show command line on warnings for darix (probably)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9577 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'make/run-cc.pl')
-rwxr-xr-xmake/run-cc.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/make/run-cc.pl b/make/run-cc.pl
index e5f29ec7f..d637ba8c9 100755
--- a/make/run-cc.pl
+++ b/make/run-cc.pl
@@ -63,6 +63,7 @@ my @msgfilters = (
[ qr/^.* warning: / => sub {
my ($msg) = @_;
my $str = $location . "\e[33;1m$msg\e[0m\n";
+ $showncmdline = 1;
$location = "";
return $str;
} ],