commit d1f949d0cbe30839eb53f34e2a8b34f61e0ad33a
parent eaebfbb4887d9410bc89e75bd142d5213f44296b
Author: Florian Dold <florian.dold@gmail.com>
Date: Fri, 24 Jul 2020 13:36:45 +0530
implement missing methods
Diffstat:
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/talerbuildconfig.py b/talerbuildconfig.py
@@ -93,6 +93,12 @@ class BuildConfig:
"""If enable, process the --variant argument."""
self.variant_enabled = True
+ def _warn(self, msg):
+ print("Warning", msg)
+
+ def _error(self, msg):
+ print("Error", msg)
+
def enable_configmk(self):
"""If enabled, output the config.mk makefile fragment."""
self.configmk_enabled = True