]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Don't print the linking command, it's too noisy with "make --quiet" builds.
authorNicholas Nethercote <njn@valgrind.org>
Tue, 22 Jun 2010 06:45:44 +0000 (06:45 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Tue, 22 Jun 2010 06:45:44 +0000 (06:45 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11186

coregrind/link_tool_exe_darwin.in
coregrind/link_tool_exe_linux.in

index 9d1b803ee865f190410696e9301bdf05de308fe5..74c0a6a50153d7785ca7b801b2c2ef805e5577fd 100644 (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:
index c6cfb9cec7fe28744f7deaa3c9d1c2227de42f60..453944df4200dad5e5dec6c66071b9cc56aa1152 100644 (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: