From 241db490b703fc734f0e8719a07d0f9ff40faaba Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Sat, 15 Oct 2022 15:09:40 -0600 Subject: [PATCH] package/brltty: fix infinite loop in configure Backport a patch to fix an infinite loop bug in configure. Fixes: - http://autobuild.buildroot.net/results/82a/82af705f7ca282495461cb3994f5a7e6f64273e1 - http://autobuild.buildroot.net/results/06c/06c9414a1ecbc1a147bc8dfddced03fc659af694 - http://autobuild.buildroot.net/results/59e/59e36093f7e437a5a37037f7fa50ce2443c47fd3 Signed-off-by: James Hilliard Signed-off-by: Yann E. MORIN --- ...unProgramTerminationCommands-used-a-.patch | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 package/brltty/0002-shell-prologue-runProgramTerminationCommands-used-a-.patch diff --git a/package/brltty/0002-shell-prologue-runProgramTerminationCommands-used-a-.patch b/package/brltty/0002-shell-prologue-runProgramTerminationCommands-used-a-.patch new file mode 100644 index 0000000000..0f81254e08 --- /dev/null +++ b/package/brltty/0002-shell-prologue-runProgramTerminationCommands-used-a-.patch @@ -0,0 +1,29 @@ +From 4503c2cbd3981ba1b50ec7ce287ab48c772b3a7f Mon Sep 17 00:00:00 2001 +From: Dave Mielke +Date: Sat, 15 Oct 2022 15:20:38 -0400 +Subject: [PATCH] shell prologue: runProgramTerminationCommands used a bash + command. (dm) + +Signed-off-by: James Hilliard +[james.hilliard1@gmail.com: backport from upstream commit +4503c2cbd3981ba1b50ec7ce287ab48c772b3a7f] +--- + brltty-prologue.sh | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/brltty-prologue.sh b/brltty-prologue.sh +index 05b817742..6d1faf983 100644 +--- a/brltty-prologue.sh ++++ b/brltty-prologue.sh +@@ -102,7 +102,7 @@ runProgramTerminationCommands() { + while [ "${programTerminationCommandCount}" -gt 0 ] + do + set -- $(getVariable "programTerminationCommand${programTerminationCommandCount}") +- let "programTerminationCommandCount -= 1" ++ programTerminationCommandCount=$((programTerminationCommandCount - 1)) + + local process="${1}" + local directory="${2}" +-- +2.34.1 +