From b42e9c19bc7e5ac65d79478a12a7ab0216da3cb8 Mon Sep 17 00:00:00 2001 From: Nicholas Nethercote Date: Tue, 22 Jun 2010 06:45:44 +0000 Subject: [PATCH] Don't print the linking command, it's too noisy with "make --quiet" builds. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11186 --- coregrind/link_tool_exe_darwin.in | 4 ++-- coregrind/link_tool_exe_linux.in | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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: -- 2.47.2