diff options
author | Leah Rowe <leah@libreboot.org> | 2025-10-04 08:36:18 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-10-04 08:36:18 +0100 |
commit | 51e424c7d189815ad3931ea07fc1f2b2b48e10c6 (patch) | |
tree | ce9a7b9be41621397ef830937f692af1dc598abd /include | |
parent | d95af9ba4429963a2301a93c0759e107753a4e08 (diff) |
tree.sh: rename btype to buildtype, for clarity
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/tree.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/tree.sh b/include/tree.sh index 46bf5dad..ff775c42 100644 --- a/include/tree.sh +++ b/include/tree.sh @@ -27,7 +27,7 @@ mkhelper="" autoconfargs="" listfile="" autogenargs="" -btype="" +buildtype="" rev="" build_depend="" gccdir="" @@ -260,7 +260,7 @@ configure_project() xtree="" postmake="" makeargs="" - btype="" + buildtype="" mkhelper="" bootstrapargs="" premake="" @@ -273,7 +273,7 @@ configure_project() _tcfg="$1/target.cfg" if [ ! -f "$_tcfg" ]; then - btype="auto" + buildtype="auto" fi # globally initialise all variables for a source tree / target: @@ -333,7 +333,7 @@ configure_project() if [ "$XBMK_RELEASE" = "y" ] && [ "$release" = "n" ]; then return 1 fi - if [ -n "$btype" ] && [ "${mode%config}" != "$mode" ]; then + if [ -n "$buildtype" ] && [ "${mode%config}" != "$mode" ]; then return 1 fi |