summaryrefslogtreecommitdiff
path: root/build-system/configure.py
diff options
context:
space:
mode:
authorAndreas HABEGGER <andreas.habegger@bfh.ch>2023-11-19 22:56:24 +0100
committerAndreas HABEGGER <andreas.habegger@bfh.ch>2023-11-20 13:45:30 +0100
commit111ff970000047c63724662c9ddb037c8aedd72a (patch)
treef149221f0c3067a6585f9ec37b013e1b69568065 /build-system/configure.py
parent2440f7e2dcc26d3569b9d8ad9fd3d3f66f987e86 (diff)
downloadwww-111ff970000047c63724662c9ddb037c8aedd72a.tar.gz
www-111ff970000047c63724662c9ddb037c8aedd72a.tar.bz2
www-111ff970000047c63724662c9ddb037c8aedd72a.zip
UC: Added additional targets to have more granular build option; Better clean-up targetdev/andreas-habegger/fb-makefileImprovements
Diffstat (limited to 'build-system/configure.py')
-rw-r--r--build-system/configure.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/build-system/configure.py b/build-system/configure.py
index 8fdfaedc..84e24aa2 100644
--- a/build-system/configure.py
+++ b/build-system/configure.py
@@ -8,7 +8,7 @@ b.enable_prefix()
b.enable_configmk()
# Base URL override for the site. The default (empty string)
-# will fall back to the base URL defined in www.yml.
+# will fall back to the base URL defined in properties.yml.
b.use(Option("baseurl", "Override base URL that the site will run on", default="", required=False))
b.use(PythonTool())
@@ -23,5 +23,6 @@ b.use(PosixTool("rm"))
b.use(PosixTool("sh"))
b.use(PosixTool("msgmerge"))
b.use(PosixTool("git"))
+b.use(PosixTool("find"))
b.use(BrowserTool())
b.run()