In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/c50695434124a900046551c70bca4c137df1eeea?hp=f8394530f83c854865e22602f698902497a989a3>

- Log -----------------------------------------------------------------
commit c50695434124a900046551c70bca4c137df1eeea
Author: Jerry D. Hedden <[email protected]>
Date:   Wed Sep 22 09:17:14 2010 -0400

    Add missing newline to macro_to_ifndef in ExtUtils::Constant::Base
-----------------------------------------------------------------------

Summary of changes:
 .../lib/ExtUtils/Constant/Base.pm                  |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/Base.pm 
b/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/Base.pm
index ecf1bb3..b6abe1c 100644
--- a/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/Base.pm
+++ b/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/Base.pm
@@ -87,7 +87,7 @@ sub macro_to_ifndef {
     my ($self, $macro) = @_;
     if (ref $macro) {
        # Can't invert these stylishly, so "bodge it"
-       return "$macro->[0]#else";
+       return "$macro->[0]#else\n";
     }
     if (defined $macro && $macro ne "" && $macro ne "1") {
        return $macro ? "#ifndef $macro\n" : "#if 1\n";

--
Perl5 Master Repository

Reply via email to