summaryrefslogtreecommitdiff
path: root/make_ext.pl
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2009-02-01 10:53:25 +0100
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2009-02-01 10:53:25 +0100
commit11f6a7695ebcf15317229951065014e277bc2048 (patch)
treec4a9f98db35b81603a6967d063a9d32f2b59f184 /make_ext.pl
parent3b333d01f6cf16e8f1bdf597e6dd0845cd7e18f3 (diff)
downloadperl-11f6a7695ebcf15317229951065014e277bc2048.tar.gz
Correctly escape $ in debug statement
Diffstat (limited to 'make_ext.pl')
-rw-r--r--make_ext.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/make_ext.pl b/make_ext.pl
index 2f09453f14..50023f00f5 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;