build-common

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

commit 4c6f40aac3f9fdcf4bc041507abe62fc9c98c10b
parent a3e35cc35c5834cd04a826de6d82b447d8be9152
Author: ng0 <ng0@n0.is>
Date:   Fri,  4 Oct 2019 16:05:51 +0000

output

Diffstat:
Mconfigure.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/configure.py b/configure.py @@ -147,7 +147,8 @@ def main(): _tool_node() posixlist = _tool_posix() for x in range(len(posixlist)): - print(posixlist[x] + "\n") + if x is not '': + print(posixlist[x] + "\n") main()