summaryrefslogtreecommitdiff
path: root/make_ext.pl
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-02-01 10:23:54 +0000
committerNicholas Clark <nick@ccl4.org>2009-02-01 10:23:54 +0000
commita79902b1d0b468e362397e28e43f88461a199d89 (patch)
tree56cb6e9cb2ad8c1fdcede5b0864e14362520dcad /make_ext.pl
parent11f6a7695ebcf15317229951065014e277bc2048 (diff)
downloadperl-a79902b1d0b468e362397e28e43f88461a199d89.tar.gz
The $@ was actually a botched conversion from $make $targ, rather than an
attempt to output a literal $
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 50023f00f5..05e42a88ff 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;