The variable EGREP is used in info/t/Init-inter.inc but not defined. This leads to errors like the following when the tests are run on Cygwin:

info/t/Init-inter.inc: line 28: -iv: command not found

The following patch fixes it:

--- info/Makefile.am    (revision 7534)
+++ info/Makefile.am    (working copy)
@@ -164,6 +164,8 @@
        t/next-quoted.sh \
        t/help.sh

+AM_TESTS_ENVIRONMENT = EGREP="$(EGREP)"; export EGREP;
+
 EXTRA_DIST += $(TESTS) $(XFAIL_TESTS) \
   t/README t/infodir \
   t/Init-inter.inc t/Init-test.inc t/Timeout-test.inc \


Ken

Reply via email to