There is a portability problem in wget's tests/Makefile, which variously refers to "unit-tests" and "./unit-tests". GNU make recognizes "foo" and "./foo" as the same target. Other make(1) implementations may not; OpenBSD's doesn't.
Unbreak the test suite: --- tests/Makefile.am.orig +++ tests/Makefile.am @@ -156,7 +156,7 @@ AM_CFLAGS = $(WERROR_CFLAGS) $(WARN_CFLAGS) CLEANFILES = *~ *.bak core core.[0-9]* -TESTS = ./unit-tests$(EXEEXT) $(PX_TESTS) +TESTS = unit-tests$(EXEEXT) $(PX_TESTS) TEST_EXTENSIONS = .px PX_LOG_COMPILER = $(PERL) AM_PX_LOG_FLAGS = -I$(srcdir) -- Christian "naddy" Weisgerber [email protected]
