Don't print the linking command, it's too noisy with "make --quiet" builds.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11186
This commit is contained in:
Nicholas Nethercote 2010-06-22 06:45:44 +00:00
parent cb2518d934
commit b42e9c19bc
2 changed files with 4 additions and 4 deletions

View File

@ -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:

View File

@ -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: