* Bob Friesenhahn wrote on Sat, May 23, 2009 at 11:52:22PM CEST: > On Sat, 23 May 2009, Ralf Wildenhues wrote: >> Can you post the output of >> make check SHELL="/bin/sh -x" >> >> on the failing system? > > Yes, it is attached. Thank goodness it is so compressable.
Thanks. Can you post the output of the following, done in an empty directory: tr X '\t' >Makefile <<\END # get some trailing white space into the TESTS variable TESTS = foo $(BAR) BAR = am__test_logs1 = $(TESTS:=.log) am__test_logs2 = $(am__test_logs1:.exe.log=.log) TEST_LOGS = $(am__test_logs2:.sh.log=.log) all: Xecho .$(TESTS). Xecho .$(am__test_logs1). Xecho .$(am__test_logs2). Xecho .$(TEST_LOGS) END make Thanks, Ralf