Correctly escape $ in debug statement
Rafael Garcia-Suarez [Sun, 1 Feb 2009 09:53:25 +0000 (10:53 +0100)]
make_ext.pl

index 2f09453..50023f0 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;