From: Rafael Garcia-Suarez Date: Sun, 1 Feb 2009 09:53:25 +0000 (+0100) Subject: Correctly escape $ in debug statement X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=11f6a7695ebcf15317229951065014e277bc2048;p=p5sagit%2Fp5-mst-13.2.git Correctly escape $ in debug statement --- diff --git a/make_ext.pl b/make_ext.pl index 2f09453..50023f0 100644 --- a/make_ext.pl +++ b/make_ext.pl @@ -202,7 +202,7 @@ EOS system @config and print "@config failed, continuing anyway...\n"; } my @targ = (@run, $make, $target, @$pass_through); - print "Making $target in $ext_dir\n$@targ\n"; + print "Making $target in $ext_dir\n\$ @targ\n"; my $code = system @targ; die "Unsuccessful make($ext_dir): code=$code" if $code != 0;