On Sun, 24 May 2009, Ralf Wildenhues wrote:
Yes, it is attached. Thank goodness it is so compressable.
Thanks. Can you post the output of the following, done in an empty
directory:
I don't know if you still need this, but this is the output:
echo .foo .
.foo .
echo .foo.log .log.
.foo.log .log.
echo .foo.log .log.
.foo.log .log.
echo .foo.log .log
.foo.log .log
$ cat Makefile
# 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:
echo .$(TESTS).
echo .$(am__test_logs1).
echo .$(am__test_logs2).
echo .$(TEST_LOGS)
Bob
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
--
Bob Friesenhahn
bfrie...@simple.dallas.tx.us, http://www.simplesystems.org/users/bfriesen/
GraphicsMagick Maintainer, http://www.GraphicsMagick.org/