aboutsummaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash')
-rw-r--r--bash/bash_completion.d/make.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/bash_completion.d/make.bash b/bash/bash_completion.d/make.bash
index a077dc91..7f8b8125 100644
--- a/bash/bash_completion.d/make.bash
+++ b/bash/bash_completion.d/make.bash
@@ -34,7 +34,7 @@ _make() {
esac
# Break the target up with space delimiters
- local -a targets
+ declare -a targets
IFS=' ' read -a targets -r \
< <(printf '%s\n' "${line%%:*}")