summaryrefslogtreecommitdiff
path: root/build-system
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-05-07 18:06:38 +0200
committerFlorian Dold <florian@dold.me>2021-05-07 18:06:38 +0200
commitdf3a1a453a4e234d633a15fc9311eda7a9fe16f2 (patch)
treea88bcc0ea863ac6deb56965cf593e0f31629766f /build-system
parent2590d9989d3d3becc1026f579677cfdf95a77351 (diff)
downloadanastasis-www-df3a1a453a4e234d633a15fc9311eda7a9fe16f2.tar.gz
anastasis-www-df3a1a453a4e234d633a15fc9311eda7a9fe16f2.tar.bz2
anastasis-www-df3a1a453a4e234d633a15fc9311eda7a9fe16f2.zip
use i18n logic from site generator
Diffstat (limited to 'build-system')
-rwxr-xr-xbuild-system/configure.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/build-system/configure.py b/build-system/configure.py
index dd7b18e..fe792dd 100755
--- a/build-system/configure.py
+++ b/build-system/configure.py
@@ -7,9 +7,9 @@ b = BuildConfig()
b.enable_prefix()
b.enable_configmk()
-# Base URL for the site. Per default, the URL is the protocol-relative
-# root path.
-b.use(Option("baseurl", "Base URL that the site will run on", default="//", required=False))
+# Base URL override for the site.
+# If not set, use value from www.yml
+b.use(Option("baseurl", "Override base URL that the site will run on", default="", required=False))
b.add_tool(PythonTool())
b.add_tool(PyBabelTool())