diff options
author | Darren Tucker <dtucker@dtucker.net> | 2020-04-22 03:33:15 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2020-04-22 03:35:49 +0200 |
commit | 300c4322b92e98d3346efa0aec1c094c94d0f964 (patch) | |
tree | deb4a9b9f00d32d51879a4bfc60bed93e4c47c64 /Makefile.in | |
parent | Remove unneeded env vars from t-exec invocation. (diff) | |
download | openssh-300c4322b92e98d3346efa0aec1c094c94d0f964.tar.xz openssh-300c4322b92e98d3346efa0aec1c094c94d0f964.zip |
Pass configure's egrep through to test-exec.sh.
Use it to create a wrapper function to call it from tests. Fixes the
keygen-comment test on platforms with impoverished default egrep (eg
Solaris).
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 4ce13e7f8..4f514c8db 100644 --- a/Makefile.in +++ b/Makefile.in @@ -671,6 +671,7 @@ unit: regress-unit-binaries interop-tests t-exec file-tests: regress-prep regress-binaries $(TARGETS) BUILDDIR=`pwd`; \ cd $(srcdir)/regress || exit $$?; \ + EGREP='@EGREP@' \ $(MAKE) \ .OBJDIR="$${BUILDDIR}/regress" \ .CURDIR="`pwd`" \ |