aboutsummaryrefslogtreecommitdiff
path: root/build-system/configure.py
diff options
context:
space:
mode:
Diffstat (limited to 'build-system/configure.py')
-rw-r--r--build-system/configure.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/build-system/configure.py b/build-system/configure.py
index a4bdde50..60aa96cd 100644
--- a/build-system/configure.py
+++ b/build-system/configure.py
@@ -4,8 +4,12 @@ from talerbuildconfig import *
4 4
5b = BuildConfig() 5b = BuildConfig()
6b.enable_prefix() 6b.enable_prefix()
7b.enable_variant()
8b.enable_configmk() 7b.enable_configmk()
8b.use(Option("variant", "Variant (used as output directory)"))
9
10# Base URL for the site. Per default, the URL is the protocol-relative
11# root path.
12b.use(Option("baseurl", "Base URL that the site will run on", default="//", required=False))
9b.add_tool(PythonTool()) 13b.add_tool(PythonTool())
10b.add_tool(PyBabelTool()) 14b.add_tool(PyBabelTool())
11b.add_tool(PosixTool("cp")) 15b.add_tool(PosixTool("cp"))