build-common

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

commit 978e67775574bf2720007d71faafff047d0c9cb3
parent b2ad1a45ece15be2be0c2882f095d43b50ce7a88
Author: ng0 <ng0@n0.is>
Date:   Fri,  4 Oct 2019 14:03:53 +0000

actually make it f-strings.

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

diff --git a/configure.py b/configure.py @@ -79,8 +79,8 @@ def main(): yarnexe = mylist[1] f = open('config.mk', 'w+') f.writelines(['# this file is autogenerated by ./configure\n', - 'prefix={myprefix}\n', - 'yarnexe={yarnexe}\n']) + f'prefix={myprefix}\n', + f'yarnexe={yarnexe}\n']) f.close()