|
From: <sv...@va...> - 2011-04-11 22:14:11
|
Author: sewardj
Date: 2011-04-11 23:14:03 +0100 (Mon, 11 Apr 2011)
New Revision: 11691
Log:
Get rid of shadowing causing a perl warning. Minor fallout from
r11686.
Modified:
trunk/coregrind/link_tool_exe_darwin.in
Modified: trunk/coregrind/link_tool_exe_darwin.in
===================================================================
--- trunk/coregrind/link_tool_exe_darwin.in 2011-04-11 22:08:06 UTC (rev 11690)
+++ trunk/coregrind/link_tool_exe_darwin.in 2011-04-11 22:14:03 UTC (rev 11691)
@@ -178,7 +178,7 @@
print "link_tool_exe_darwin: $cmd\n";
-my $r = system("$cmd");
+$r = system("$cmd");
if ($r != 0) {
exit 1;
|