summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-10-04 08:37:41 +0100
committerLeah Rowe <leah@libreboot.org>2025-10-04 08:37:41 +0100
commit1943dba60836abc9446df64dbc3aac881dfdd285 (patch)
tree465c2616789806f644790d15b68b4733ecce0f20 /include
parent51e424c7d189815ad3931ea07fc1f2b2b48e10c6 (diff)
tree.sh: rename xtree to xgcctree, for clarity
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
-rw-r--r--include/get.sh6
-rw-r--r--include/tree.sh8
2 files changed, 7 insertions, 7 deletions
diff --git a/include/get.sh b/include/get.sh
index 30813dc0..a0f7fb20 100644
--- a/include/get.sh
+++ b/include/get.sh
@@ -27,7 +27,7 @@ fetch_targets()
fetch_project()
{
- xtree=""
+ xgcctree=""
. "config/git/$project/pkg.cfg" || \
err "Can't read config 'config/git/$project/pkg.cfg'" \
@@ -38,8 +38,8 @@ fetch_project()
"fetch_project" "$@"
fi
- if [ -n "$xtree" ]; then
- x_ ./mk -f coreboot "$xtree"
+ if [ -n "$xgcctree" ]; then
+ x_ ./mk -f coreboot "$xgcctree"
fi
if [ -n "$depend" ]; then
for d in $depend ; do
diff --git a/include/tree.sh b/include/tree.sh
index ff775c42..2b6c4b7f 100644
--- a/include/tree.sh
+++ b/include/tree.sh
@@ -20,7 +20,7 @@ project=""
target=""
target_dir=""
targets=""
-xtree=""
+xgcctree=""
release=""
bootstrapargs=""
mkhelper=""
@@ -257,7 +257,7 @@ configure_project()
cleanargs=""
build_depend=""
autoconfargs=""
- xtree=""
+ xgcctree=""
postmake=""
makeargs=""
buildtype=""
@@ -469,8 +469,8 @@ check_cross_compiler()
if [ "$project" != "coreboot" ]; then
cbdir="src/coreboot/default"
fi
- if [ -n "$xtree" ]; then
- cbdir="src/coreboot/$xtree"
+ if [ -n "$xgcctree" ]; then
+ cbdir="src/coreboot/$xgcctree"
fi
xfix="${1%-*}"