Skip to content

Commit 4b412ec

Browse files
Fix syntax error in the if condition
There was a syntax error in shell script if TEXINFO_VERSION_MAJOR had an empty value or not present at all Signed-off-by: Anton Kolesov <[email protected]>
1 parent 8a145cf commit 4b412ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -924,7 +924,7 @@ if [ $DO_PDF = --pdf ]; then
924924

925925
# There are issues with Texinfo v4 and non-C locales.
926926
# See http://lists.gnu.org/archive/html/bug-texinfo/2010-03/msg00031.html
927-
if [ 4 = $TEXINFO_VERSION_MAJOR ]; then
927+
if [ 4 = "$TEXINFO_VERSION_MAJOR" ]; then
928928
export LC_ALL=C
929929
fi
930930
fi

0 commit comments

Comments
 (0)