summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-07-24 13:36:45 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-07-24 13:36:45 +0530
commitd1f949d0cbe30839eb53f34e2a8b34f61e0ad33a (patch)
treebd32e08f0ddd5e6acc6ce640f9a2823daf90f048
parenteaebfbb4887d9410bc89e75bd142d5213f44296b (diff)
downloadbuild-common-d1f949d0cbe30839eb53f34e2a8b34f61e0ad33a.tar.gz
build-common-d1f949d0cbe30839eb53f34e2a8b34f61e0ad33a.tar.bz2
build-common-d1f949d0cbe30839eb53f34e2a8b34f61e0ad33a.zip
implement missing methods
-rw-r--r--talerbuildconfig.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/talerbuildconfig.py b/talerbuildconfig.py
index f28e1c2..db451c0 100644
--- 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