build-common

Shared build system code (usually as a git submodule)
Log | Files | Refs | README | LICENSE

commit a3e35cc35c5834cd04a826de6d82b447d8be9152
parent 63f01ec1ac63874de876fda09ff3d17b86a36cde
Author: ng0 <ng0@n0.is>
Date:   Fri,  4 Oct 2019 16:03:49 +0000

fix reference before assignment

Diffstat:
Mconfigure.py | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/configure.py b/configure.py @@ -76,12 +76,21 @@ def _tool_posix(): tool_find = _existence('find') if tool_find is None: msg_find = 'prerequiste find(1) not found.' + else: + msg_find = '' + tool_xargs = _existence('xargs') if tool_xargs is None: msg_xargs = 'prerequiste xargs(1) not found.' + else: + msg_xargs = '' + tool_msgmerge = _existence('msgmerge') if tool_msgmerge is None: msg_msgmerge = 'prerequiste msgmerge(1) not found.' + else: + msg_msgmerge = '' + return [msg_find, msg_xargs, msg_msgmerge]