bison-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 03/22] examples: avoid "unbound variable" errors


From: Akim Demaille
Subject: [PATCH 03/22] examples: avoid "unbound variable" errors
Date: Sat, 23 Jan 2021 15:55:42 +0100

From: Martin Rehak <martin.rehak@oracle.com>

When the shell option `nounset` is set, we may get "unbound variable"
errors.
https://lists.gnu.org/r/bug-bison/2020-11/msg00013.html

* examples/test (diff_opts): Be sure to initialize it.
---
 examples/test | 1 +
 1 file changed, 1 insertion(+)

diff --git a/examples/test b/examples/test
index 810767014..7590e1281 100755
--- a/examples/test
+++ b/examples/test
@@ -37,6 +37,7 @@ strip_prompt=false
 # If diff supports --strip-trailing-cr, use it, to avoid EOL issues
 # when testing Java programs on Windows.
 echo "checking for diff --strip-trailing-cr..."
+diff_opts=
 if diff --strip-trailing-cr "$1" "$1"; then
   diff_opts=--strip-trailing-cr
 fi
-- 
2.30.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]