diff options
author | David Mitchell <davem@iabyn.com> | 2017-11-13 09:18:07 +0000 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2017-11-13 09:18:07 +0000 |
commit | bc60657c80df1e21e2a12017077425d3b6db6cfe (patch) | |
tree | 6349901eaf28e87282fe3df7881c04bf34b82a42 /configpm | |
parent | a36b9036e25c58d568c35f764ff2830a9fc4b2f8 (diff) | |
download | perl-bc60657c80df1e21e2a12017077425d3b6db6cfe.tar.gz |
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.
Diffstat (limited to 'configpm')
-rwxr-xr-x | configpm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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'); |