summaryrefslogtreecommitdiff
path: root/gnulib-tool
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2021-12-13 03:03:13 +0100
committerBruno Haible <bruno@clisp.org>2021-12-13 03:03:13 +0100
commitdc08febea1fc0a8c902dfa89d0abc2952873529b (patch)
treec426d650ae5fb9e783a23fda96ebc411d3690721 /gnulib-tool
parent4e7b4cc6fb3e3b659c98baf6db26d8a06099fbee (diff)
downloadgnulib-dc08febea1fc0a8c902dfa89d0abc2952873529b.tar.gz
gnulib-tool: Fix mistake in last commit.
Diffstat (limited to 'gnulib-tool')
-rwxr-xr-xgnulib-tool4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnulib-tool b/gnulib-tool
index 878b9588f2..58e1859c54 100755
--- a/gnulib-tool
+++ b/gnulib-tool
@@ -5844,11 +5844,11 @@ s,//*$,/,'
# _AC_LIBOBJ_ALLOCA, invoked from AC_FUNC_ALLOCA.
# All the m4_pushdef/m4_popdef logic in func_emit_initmacro_start/_end
# does not help to avoid this error.
- if grep ' lib/alloca\.c$' "$tmp"/new-files; then
+ if grep ' lib/alloca\.c$' "$tmp"/new-files >/dev/null; then
# alloca.c will be present in $sourcebase.
echo " AC_CONFIG_LIBOBJ_DIR([$sourcebase])"
else
- if grep ' tests=lib/alloca\.c$' "$tmp"/new-files; then
+ if grep ' tests=lib/alloca\.c$' "$tmp"/new-files >/dev/null; then
# alloca.c will be present in $testsbase.
echo " AC_CONFIG_LIBOBJ_DIR([$testsbase])"
fi