build-common

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

commit 996bc45cbf3acf72f270bbd8fb428b3ffe2fe8e1
parent 6d8322d57cb8f9ded3528b456a47d93b37be00e2
Author: ng0 <ng0@n0.is>
Date:   Sat, 14 Dec 2019 13:49:29 +0000

write variant to config.mk

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

diff --git a/talerbuildconfig.py b/talerbuildconfig.py @@ -125,6 +125,8 @@ class BuildConfig: f.write("# this makefile fragment is autogenerated by configure.py\n") if self.prefix_enabled: f.write(f"prefix = {args.prefix}\n") + if self.variant_enabled: + f.write(f"variant = {args.variant}\n") for tool in self.tools: path, version = self.tool_results[tool.name] f.write(f"{tool.name} = {path}\n")