summaryrefslogtreecommitdiff
path: root/configpm
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2017-11-13 09:18:07 +0000
committerDavid Mitchell <davem@iabyn.com>2017-11-13 09:18:07 +0000
commitbc60657c80df1e21e2a12017077425d3b6db6cfe (patch)
tree6349901eaf28e87282fe3df7881c04bf34b82a42 /configpm
parenta36b9036e25c58d568c35f764ff2830a9fc4b2f8 (diff)
downloadperl-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-xconfigpm2
1 files changed, 1 insertions, 1 deletions
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');