summaryrefslogtreecommitdiff
path: root/build-system
diff options
context:
space:
mode:
authorStefan Kügel <skuegel@web.de>2022-12-12 21:51:48 +0100
committerStefan Kügel <skuegel@web.de>2022-12-12 21:51:48 +0100
commit8a652235a20d233f698c496a3a8484ba3fee8588 (patch)
tree9768febaba892acc53305275f041fd07baedf7d6 /build-system
parent8cb47aab8494bc92c0a61a64676e30d99190571e (diff)
downloadwww-8a652235a20d233f698c496a3a8484ba3fee8588.tar.gz
www-8a652235a20d233f698c496a3a8484ba3fee8588.tar.bz2
www-8a652235a20d233f698c496a3a8484ba3fee8588.zip
Replacing the ./configure command from configure.py for taler.net
Signed-off-by: Stefan Kügel <skuegel@web.de>
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())