From: Nicholas Nethercote Date: Tue, 22 Jun 2010 06:45:44 +0000 (+0000) Subject: Don't print the linking command, it's too noisy with "make --quiet" builds. X-Git-Tag: svn/VALGRIND_3_6_0~256 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b42e9c19bc7e5ac65d79478a12a7ab0216da3cb8;p=thirdparty%2Fvalgrind.git Don't print the linking command, it's too noisy with "make --quiet" builds. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11186 --- diff --git a/coregrind/link_tool_exe_darwin.in b/coregrind/link_tool_exe_darwin.in index 9d1b803ee8..74c0a6a501 100644 --- a/coregrind/link_tool_exe_darwin.in +++ b/coregrind/link_tool_exe_darwin.in @@ -15,7 +15,7 @@ use warnings; 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 @@ foreach my $n (2 .. $#ARGV) { $cmd = "$cmd $ARGV[$n]"; } -print "link_tool_exe_darwin: $cmd\n"; +#print "link_tool_exe_darwin: $cmd\n"; # Execute the command: diff --git a/coregrind/link_tool_exe_linux.in b/coregrind/link_tool_exe_linux.in index c6cfb9cec7..453944df42 100644 --- a/coregrind/link_tool_exe_linux.in +++ b/coregrind/link_tool_exe_linux.in @@ -52,7 +52,7 @@ use warnings; 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 @@ foreach my $n (2 .. $#ARGV) { $cmd = "$cmd $ARGV[$n]"; } -print "link_tool_exe_linux: $cmd\n"; +#print "link_tool_exe_linux: $cmd\n"; # Execute the command: