From dd0dc1b6c6d6b02e4e1613b62e373efa79d1562e Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sun, 20 Nov 2016 08:37:57 -0500 Subject: 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 --- functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions b/functions index 7785347..14235b2 100644 --- a/functions +++ b/functions @@ -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 -- cgit v1.2.3-24-g4f1b