In perl.git, the branch blead has been updated

<https://perl5.git.perl.org/perl.git/commitdiff/bc60657c80df1e21e2a12017077425d3b6db6cfe?hp=a36b9036e25c58d568c35f764ff2830a9fc4b2f8>

- Log -----------------------------------------------------------------
commit bc60657c80df1e21e2a12017077425d3b6db6cfe
Author: David Mitchell <[email protected]>
Date:   Mon Nov 13 09:18:07 2017 +0000

    configpm: fix duplicate 'our' declaration
    
    This file of old incorrectly had both
    
        use vars '$Config_SH_expanded';
    
    and
    
        our $Config_SH_expanded;
    
    lines. After a recent commit which did s/use vars/our/g, the duplicate
    'our' declaration started warning.

-----------------------------------------------------------------------

Summary of changes:
 configpm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configpm b/configpm
index ebbc340efd..2fda5a57c3 100755
--- a/configpm
+++ b/configpm
@@ -332,7 +332,7 @@ die if $@;
 
 # Calculation for the keys for byteorder
 # This is somewhat grim, but I need to run fetch_string here.
-our $Config_SH_expanded = join "\n", '', @v_others;
+$Config_SH_expanded = join "\n", '', @v_others;
 
 my $t = fetch_string ({}, 'ivtype');
 my $s = fetch_string ({}, 'ivsize');

-- 
Perl5 Master Repository

Reply via email to