[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
EGREP used but not defined in tests
From: |
Ken Brown |
Subject: |
EGREP used but not defined in tests |
Date: |
Sat, 26 Nov 2016 13:08:58 -0500 |
User-agent: |
Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.5.0 |
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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- EGREP used but not defined in tests,
Ken Brown <=