summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-10-02 06:55:29 +0100
committerLeah Rowe <leah@libreboot.org>2025-10-02 06:55:29 +0100
commita74af6aa0579e6442646713c794c4ecc62902831 (patch)
tree738672a123c40106d30d5edd1d86eb71ddb6f8eb
parent15cefca84b4708b1e837a7092a7372c29f842e42 (diff)
tree.sh: remove superfluous eval statements
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r--include/tree.sh14
1 files changed, 11 insertions, 3 deletions
diff --git a/include/tree.sh b/include/tree.sh
index bfb60eea..8b126240 100644
--- a/include/tree.sh
+++ b/include/tree.sh
@@ -228,7 +228,9 @@ configure_project()
printf "Loading %s config: %s\n" "$project" "$_tcfg"
- eval "`setvars "" rev tree`"
+ rev=""
+ tree=""
+
eval "`setcfg "$_tcfg"`"
if [ "$_f" = "-d" ]; then
@@ -348,7 +350,8 @@ delete_old_project_files()
project_up_to_date()
{
- eval "`setvars "" old_hash hash`"
+ old_hash=""
+ hash=""
hashdir="$1"
hashname="$2"
@@ -439,7 +442,12 @@ check_gnu_path()
err "Host '$1' unavailable" "check_gnu_path" "$@"
fi
- eval "`setvars "" gccver gccfull gnatver gnatfull gccdir gnatdir`"
+ gccver=""
+ gccfull=""
+ gnatver=""
+ gnatfull=""
+ gccdir=""
+ gnatdir=""
if host_gcc_gnat_match "$@"; then
return 0