diff options
author | Lancelot SIX <lsix@lancelotsix.com> | 2021-03-26 16:46:57 +0000 |
---|---|---|
committer | Lancelot SIX <lsix@lancelotsix.com> | 2021-03-26 23:42:33 +0000 |
commit | efe1ecd834133e0b1947b410b018076a2a6dbe6c (patch) | |
tree | 90331d06482115e517129e4536140d56a3d56df6 /gdb/ChangeLog | |
parent | f4655dee7749516dd9f4867a58e2910a7c9610c8 (diff) | |
download | binutils-efe1ecd834133e0b1947b410b018076a2a6dbe6c.zip binutils-efe1ecd834133e0b1947b410b018076a2a6dbe6c.tar.gz binutils-efe1ecd834133e0b1947b410b018076a2a6dbe6c.tar.bz2 |
gdb-add-index.sh: Remove use of non posix 'local'
While working on gdb-add-index.sh, it appeared that it uses the non
POSIX 'local' keyword. Instead of using local to allow variable
shadowing, I rename the local one to avoid name conflicts altogether.
This commit gets rid of the following shellcheck warning:
In gdb-add-index.sh line 63:
local file="$1"
^--------^ SC2039: In POSIX sh, 'local' is undefined.
gdb/ChangeLog:
* contrib/gdb-add-index.sh: Avoid variable shadowing and get
rid of 'local'.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f62af51..c3063b8 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2021-03-26 Lancelot Six <lsix@lancelotsix.com> + + * contrib/gdb-add-index.sh: Avoid variable shadowing and get + rid of 'local'. + 2021-03-26 Tom Tromey <tom@tromey.com> * symtab.c (struct output_source_filename_data): Add 'output' |