In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/a79902b1d0b468e362397e28e43f88461a199d89?hp=11f6a7695ebcf15317229951065014e277bc2048>

- Log -----------------------------------------------------------------
commit a79902b1d0b468e362397e28e43f88461a199d89
Author: Nicholas Clark <n...@ccl4.org>
Date:   Sun Feb 1 10:23:54 2009 +0000

    The $@ was actually a botched conversion from $make $targ, rather than an
    attempt to output a literal $
-----------------------------------------------------------------------

Summary of changes:
 make_ext.pl       |    2 +-
 win32/buildext.pl |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/make_ext.pl b/make_ext.pl
index 50023f0..05e42a8 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_di...@targ\n";
     my $code = system @targ;
     die "Unsuccessful make($ext_dir): code=$code" if $code != 0;
 
diff --git a/win32/buildext.pl b/win32/buildext.pl
index 37fa818..55715f2 100644
--- a/win32/buildext.pl
+++ b/win32/buildext.pl
@@ -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...@targ\n";
+    print "Making $target in $ext_di...@targ\n";
     my $code = system @targ;
     die "Unsuccessful make($ext_dir): code=$code" if $code != 0;
 

--
Perl5 Master Repository

Reply via email to