From 7baae92cc9ac9d81b995e5fdf091dd5e9cef50ec Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 10 Feb 2008 21:57:42 +0000 Subject: Brainfart git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8886 e03df62e-2008-0410-955e-edbf42e46eb7 --- make/run-cc.pl | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'make/run-cc.pl') diff --git a/make/run-cc.pl b/make/run-cc.pl index 58e7f6050..75234213c 100755 --- a/make/run-cc.pl +++ b/make/run-cc.pl @@ -45,11 +45,18 @@ my $pid; my ($r_stderr, $w_stderr); my $name = ""; +my $action = ""; foreach my $n (@ARGV) { if ($n =~ /\.cpp$/) { + $action = "BUILD"; + $name = $n; + } + elsif ($n !~ /\.^-c/) + { + $action = "LINK"; $name = $n; } } @@ -66,7 +73,7 @@ die "Cannot fork to start gcc! $!\n" unless defined($pid); if ($pid) { - print "\t\e[1;32mBUILD:\e[0m\t\t$name\n" unless $name eq ""; + print "\t\e[1;32m$action:\e[0m\t\t$name\n" unless $name eq ""; my $fail = 0; # Parent - Close child-side pipes. -- cgit v1.2.3