On Mon, May 6, 2019 at 2:01 PM Tim Rühsen <[email protected]> wrote: > ... > > Please try this patch and report back: > diff --git a/testenv/Makefile.am b/testenv/Makefile.am > index b5a39ad2..5150d4ac 100644 > --- a/testenv/Makefile.am > +++ b/testenv/Makefile.am > @@ -123,5 +123,5 @@ endif > EXTRA_DIST = certs conf exc misc server test README $(TESTS) > > TEST_EXTENSIONS = .py > -PY_LOG_COMPILER = python3 > +PY_LOG_COMPILER = $(PYTHON) > AM_PY_LOG_FLAGS = -O
No joy on Solaris 11.3. I got the same result. However, I had to hack around old Autotools provided by Oracle: sed -e 's|PY_LOG_COMPILER = python3|PY_LOG_COMPILER = $(PYTHON)|g' testenv/Makefile.am > testenv/Makefile.am.fixed mv testenv/Makefile.am.fixed testenv/Makefile.am touch -t 197001010000 testenv/Makefile.am If I don't set the filetime in the past then Autotools wants to do the full reconf, which dies because of Solaris' ancient tools. The same trick worked as expected for LTLIBICONV at Wget 1.20.1. I did not test other platforms. Jeff
