mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-26 09:33:14 +01:00
Better solution to multi-line exported symbols issue
This commit is contained in:
parent
5761bfd7d1
commit
cdb75bfd96
@ -2905,12 +2905,14 @@ sub get_params() {
|
||||
|
||||
fatal_error "Processing of $fn failed" if $?;
|
||||
|
||||
my $variable;
|
||||
|
||||
for ( @params ) {
|
||||
if ( /^(.*?)=(.*)$/ ) {
|
||||
$params{$1} = $2 unless $1 eq '_';
|
||||
} else {
|
||||
warning_message "Unrecognized output from 'env' ($_) ignored";
|
||||
}
|
||||
if ( /^export (.*?)='(.*)'$/ ) {
|
||||
$params{$variable = $1} = $2 unless $1 eq '_';
|
||||
} elsif ( /^export (.*?)='/ ) {
|
||||
warning_message "Exported symbol '$1' ignored";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -32,4 +32,4 @@ set -a
|
||||
|
||||
set +a
|
||||
|
||||
env
|
||||
export -p
|
||||
|
Loading…
Reference in New Issue
Block a user