From: Nicholas Clark Date: Sun, 1 Feb 2009 10:23:54 +0000 (+0000) Subject: The $@ was actually a botched conversion from $make $targ, rather than an X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a79902b1d0b468e362397e28e43f88461a199d89;p=p5sagit%2Fp5-mst-13.2.git The $@ was actually a botched conversion from $make $targ, rather than an attempt to output a literal $ --- diff --git a/make_ext.pl b/make_ext.pl index 50023f0..05e42a8 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; diff --git a/win32/buildext.pl b/win32/buildext.pl index 37fa818..55715f2 100644 --- a/win32/buildext.pl +++ b/win32/buildext.pl @@ -159,7 +159,7 @@ sub build_extension { 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;