|
From: <sv...@va...> - 2010-06-22 06:45:53
|
Author: njn
Date: 2010-06-22 07:45:44 +0100 (Tue, 22 Jun 2010)
New Revision: 11186
Log:
Don't print the linking command, it's too noisy with "make --quiet" builds.
Modified:
trunk/coregrind/link_tool_exe_darwin.in
trunk/coregrind/link_tool_exe_linux.in
Modified: trunk/coregrind/link_tool_exe_darwin.in
===================================================================
--- trunk/coregrind/link_tool_exe_darwin.in 2010-06-22 03:50:08 UTC (rev 11185)
+++ trunk/coregrind/link_tool_exe_darwin.in 2010-06-22 06:45:44 UTC (rev 11186)
@@ -15,7 +15,7 @@
use strict;
# expect at least: alt-load-address gcc -o foo bar.o
-die "Not enougn arguments"
+die "Not enough arguments"
if (($#ARGV + 1) < 5);
my $ala = $ARGV[0];
@@ -39,7 +39,7 @@
$cmd = "$cmd $ARGV[$n]";
}
-print "link_tool_exe_darwin: $cmd\n";
+#print "link_tool_exe_darwin: $cmd\n";
# Execute the command:
Modified: trunk/coregrind/link_tool_exe_linux.in
===================================================================
--- trunk/coregrind/link_tool_exe_linux.in 2010-06-22 03:50:08 UTC (rev 11185)
+++ trunk/coregrind/link_tool_exe_linux.in 2010-06-22 06:45:44 UTC (rev 11186)
@@ -52,7 +52,7 @@
use strict;
# expect at least: alt-load-address gcc -o foo bar.o
-die "Not enougn arguments"
+die "Not enough arguments"
if (($#ARGV + 1) < 5);
my $ala = $ARGV[0];
@@ -76,7 +76,7 @@
$cmd = "$cmd $ARGV[$n]";
}
-print "link_tool_exe_linux: $cmd\n";
+#print "link_tool_exe_linux: $cmd\n";
# Execute the command:
|