[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * install-info/tests/defs.in, util/texi2dvi: Assi
From: |
Gavin D. Smith |
Subject: |
branch master updated: * install-info/tests/defs.in, util/texi2dvi: Assign EGREP variable using quotes for better shell portability. |
Date: |
Mon, 11 Apr 2022 15:36:40 -0400 |
This is an automated email from the git hooks/post-receive script.
gavin pushed a commit to branch master
in repository texinfo.
The following commit(s) were added to refs/heads/master by this push:
new 51321f0ab2 * install-info/tests/defs.in, util/texi2dvi: Assign EGREP
variable using quotes for better shell portability.
51321f0ab2 is described below
commit 51321f0ab252b28ca32c7376deb7881f8f366dc6
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Mon Apr 11 20:36:31 2022 +0100
* install-info/tests/defs.in, util/texi2dvi:
Assign EGREP variable using quotes for better
shell portability.
---
ChangeLog | 6 ++++++
install-info/tests/defs.in | 2 +-
util/texi2dvi | 2 +-
3 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 8b35648079..a2b3e86676 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2022-04-11 Gavin Smith <gavinsmith0123@gmail.com>
+
+ * install-info/tests/defs.in, util/texi2dvi:
+ Assign EGREP variable using quotes for better
+ shell portability.
+
2022-04-11 Gavin Smith <gavinsmith0123@gmail.com>
grep instead of List::Util::any
diff --git a/install-info/tests/defs.in b/install-info/tests/defs.in
index 73a68c7a44..cf372ce4c2 100644
--- a/install-info/tests/defs.in
+++ b/install-info/tests/defs.in
@@ -60,7 +60,7 @@ if test -z "$TMPDIR"; then
export TMPDIR
fi
-: ${EGREP=grep -E}
+: ${EGREP='grep -E'}
# Systems which define $COMSPEC or $ComSpec use semicolons to separate
# directories in TEXINPUTS -- except for Cygwin et al., where COMSPEC
diff --git a/util/texi2dvi b/util/texi2dvi
index 84ddde517c..e85ba48557 100755
--- a/util/texi2dvi
+++ b/util/texi2dvi
@@ -74,7 +74,7 @@ newline='
'
IFS="$space$tab$newline"
-: ${EGREP=grep -E}
+: ${EGREP='grep -E'}
# Systems which define $COMSPEC or $ComSpec use semicolons to separate
# directories in TEXINPUTS -- except for Cygwin and Msys, where COMSPEC
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * install-info/tests/defs.in, util/texi2dvi: Assign EGREP variable using quotes for better shell portability.,
Gavin D. Smith <=