commit 8a652235a20d233f698c496a3a8484ba3fee8588
parent 8cb47aab8494bc92c0a61a64676e30d99190571e
Author: Stefan Kügel <skuegel@web.de>
Date: Mon, 12 Dec 2022 21:51:48 +0100
Replacing the ./configure command from configure.py for taler.net
Signed-off-by: Stefan Kügel <skuegel@web.de>
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git 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())