diff options
author | Denys Vlasenko | 2017-01-24 20:52:42 +0100 |
---|---|---|
committer | Denys Vlasenko | 2017-01-24 20:52:42 +0100 |
commit | bca4ea8b68403e6f751341b82c65937f14590679 (patch) | |
tree | 21c637e653ceaa259599cecf8fb57a9de8ad6172 /scripts/gen_build_files.sh | |
parent | 89193f985bf50af702e0f98a3c86573277c03287 (diff) | |
download | busybox-bca4ea8b68403e6f751341b82c65937f14590679.zip busybox-bca4ea8b68403e6f751341b82c65937f14590679.tar.gz |
remove "local" bashism from a few scripts
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'scripts/gen_build_files.sh')
-rwxr-xr-x | scripts/gen_build_files.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/gen_build_files.sh b/scripts/gen_build_files.sh index ebee17c..f79fa2f 100755 --- a/scripts/gen_build_files.sh +++ b/scripts/gen_build_files.sh @@ -20,7 +20,9 @@ chk() { status "CHK" "$@"; } generate() { # NB: data to be inserted at INSERT line is coming on stdin - local src="$1" dst="$2" header="$3" + src="$1" + dst="$2" + header="$3" #chk "${dst}" { # Need to use printf: different shells have inconsistent |