The $@ was actually a botched conversion from $make $targ, rather than an
Nicholas Clark [Sun, 1 Feb 2009 10:23:54 +0000 (10:23 +0000)]
attempt to output a literal $

make_ext.pl
win32/buildext.pl

index 50023f0..05e42a8 100644 (file)
@@ -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;
 
index 37fa818..55715f2 100644 (file)
@@ -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;