diff options
author | Dave Reisner <dreisner@archlinux.org> | 2016-11-20 14:37:57 +0100 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2016-11-20 14:37:57 +0100 |
commit | dd0dc1b6c6d6b02e4e1613b62e373efa79d1562e (patch) | |
tree | 991fac2215d8cff223438d67b9f66c53986c0f2f | |
parent | 89d9186264f56fcbceecd69681a79e70d43c6f14 (diff) | |
download | mkinitcpio-dd0dc1b6c6d6b02e4e1613b62e373efa79d1562e.tar.gz mkinitcpio-dd0dc1b6c6d6b02e4e1613b62e373efa79d1562e.tar.xz |
functions: fix typo in variable name
builderrors -> _builderrors -- this makes binary dep resolution
properly a builderror. As seen in:
https://bugs.archlinux.org/task/51818
-rw-r--r-- | functions | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -590,7 +590,7 @@ add_binary() { sodep=${BASH_REMATCH[1]} elif [[ $line = *'not found' ]]; then error "binary dependency \`%s' not found for \`%s'" "${line%% *}" "$1" - (( ++builderrors )) + (( ++_builderrors )) continue fi |