summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Aehlig <klaus.aehlig@huawei.com>2022-04-06 12:22:10 +0200
committerKlaus Aehlig <klaus.aehlig@huawei.com>2022-04-07 16:47:24 +0200
commitcd7a1a7c78f5c87129cb43cf5196f90995581bc0 (patch)
tree9fc1272473ff631846945b7929d981d0a03c8aa0
parent48bb318eca1e23f655238515f141e83577dda4e9 (diff)
downloadjustbuild-cd7a1a7c78f5c87129cb43cf5196f90995581bc0.tar.gz
bin/bootstrap: use top-level default target
As the default target is also staged canonically, there is no longer the need for the bootstrap script to know the path and staging output of the internal main target.
-rwxr-xr-xbin/bootstrap.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/bootstrap.py b/bin/bootstrap.py
index 9eb4a9cc..13d8004e 100755
--- a/bin/bootstrap.py
+++ b/bin/bootstrap.py
@@ -16,8 +16,8 @@ from pathlib import Path
REPOS = "etc/repos.json"
BOOTSTRAP_CC = ["clang++", "-std=c++20", "-DBOOTSTRAP_BUILD_TOOL"]
MAIN_MODULE = ""
-MAIN_TARGET = "just"
-MAIN_STAGE = "src/buildtool/main/just"
+MAIN_TARGET = ""
+MAIN_STAGE = "bin/just"
# relevant directories (global variables)