summaryrefslogtreecommitdiff
path: root/include/lib.sh
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-01-03 15:43:27 +0000
committerLeah Rowe <leah@libreboot.org>2025-01-03 15:43:27 +0000
commitec6bcc1fba5fbdf8b19b3d1cf9711f3d4c9c3741 (patch)
tree8a3f60eec42953170e31e7fd727849615019d8b3 /include/lib.sh
parent5284f20b9811a65120837ab60e3ce02ca6937c37 (diff)
fix more unescaped quotes in eval
it should fix more build errors that might have appeared in the aforementioned revision, mentioned in the previous commit message Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/lib.sh')
-rw-r--r--include/lib.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lib.sh b/include/lib.sh
index 2b630797..857857d2 100644
--- a/include/lib.sh
+++ b/include/lib.sh
@@ -40,7 +40,7 @@ setvars()
chkvars()
{
for var in "$@"; do
- eval "[ -n "\${$var+x}" ] || \$err \"$var unset\""
+ eval "[ -n \"\${$var+x}\" ] || \$err \"$var unset\""
eval "[ -n \"\$$var\" ] || \$err \"$var unset\""
done; return 0
}