build-common

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

commit dd000ee983962b11a94cd0fcaa6d46ba9699b456
parent 996bc45cbf3acf72f270bbd8fb428b3ffe2fe8e1
Author: ng0 <ng0@n0.is>
Date:   Sat, 14 Dec 2019 13:51:24 +0000

fix for variant

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

diff --git a/talerbuildconfig.py b/talerbuildconfig.py @@ -62,6 +62,7 @@ class BuildConfig: self.tool_results = {} self.args = None self.prefix_enabled = False + self.variant_enabled = False self.configmk_enabled = False def add_tool(self, tool): @@ -79,7 +80,7 @@ class BuildConfig: def enable_variant(self): """If enable, process the --variant argument.""" - self.variant_enabled = False + self.variant_enabled = True def enable_configmk(self): """If enabled, output the config.mk makefile fragment."""