diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2009-02-01 10:53:25 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2009-02-01 10:53:25 +0100 |
commit | 11f6a7695ebcf15317229951065014e277bc2048 (patch) | |
tree | c4a9f98db35b81603a6967d063a9d32f2b59f184 /make_ext.pl | |
parent | 3b333d01f6cf16e8f1bdf597e6dd0845cd7e18f3 (diff) | |
download | perl-11f6a7695ebcf15317229951065014e277bc2048.tar.gz |
Correctly escape $ in debug statement
Diffstat (limited to 'make_ext.pl')
-rw-r--r-- | make_ext.pl | 2 |
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; |