summaryrefslogtreecommitdiff
path: root/build-system
diff options
context:
space:
mode:
Diffstat (limited to 'build-system')
-rw-r--r--build-system/configure.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/build-system/configure.py b/build-system/configure.py
index e841dca2..8fdfaedc 100644
--- a/build-system/configure.py
+++ b/build-system/configure.py
@@ -1,3 +1,4 @@
+# This configure.py.template file is in the public domain.
import sys
from pathlib import Path
from talerbuildconfig import *
@@ -5,10 +6,9 @@ from talerbuildconfig import *
b = BuildConfig()
b.enable_prefix()
b.enable_configmk()
-b.use(Option("variant", "Variant (used as output directory)"))
-# Base URL override for the site. The default (empty string)
-# will fall back to the base URL defined www.yml.
+# Base URL override for the site. The default (empty string)
+# will fall back to the base URL defined in www.yml.
b.use(Option("baseurl", "Override base URL that the site will run on", default="", required=False))
b.use(PythonTool())