diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-03-17 05:44:46 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-03-17 05:44:46 (EDT) |
commit | a46fc2a52c94538a5bdd4e8072f83ec3d085b29c (patch) | |
tree | 3792070267ae88580129e7e5b89c4739e3158b0d /tools | |
parent | 82db82b416b3ec67dc47c755a4bb5d8e49ace4be (diff) |
tools/shld.sh: Reset IFS before splitting ${__init_funcs}
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/shld.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/shld.sh b/tools/shld.sh index 191d1a4..d53dab3 100755 --- a/tools/shld.sh +++ b/tools/shld.sh @@ -95,6 +95,7 @@ link() # Add call to init functions. cat >&3 <<-'EOF' + unset IFS for __func in ${__init_funcs}; do ${__func} done |