[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
patch for automake-1.8.5
From: |
Marion Hakanson |
Subject: |
patch for automake-1.8.5 |
Date: |
Fri, 16 Jul 2004 11:29:37 -0700 |
Folks,
When running "make check" for automake-1.8.5, on SPARC/Solaris-9,
there are 8 test failures. One of them, "conflnk3", is due to the
"test -e" functionality being missing from /bin/sh -- not much can
be done about that except to use /bin/bash instead.
However, the other 7 tests which fail do so because they are unable
to find the "aclocal-1.8" or "automake-1.8" commands which are part
of what's being tested. I traced this to the PATH setting in tests/defs.in
not being exported into the environment. Applying this patch allows
all of the 7 tests to pass. The 7 tests affected are:
aclocal4.test
aclocal5.test
aclocal6.test
acloca14.test
conff.test
make.test
remake5.test
Here's the patch:
======================
--- tests/defs.in.orig Mon May 10 13:33:20 2004
+++ tests/defs.in Wed Jul 14 15:00:55 2004
@@ -84,6 +84,7 @@
test -z "$AUTOMAKE" && AUTOMAKE="address@hidden@ --foreign -Werror
-Wall"
PATH="address@hidden@$PATH"
+export PATH
echo $PATH
if test -n "$required"
======================
Regards,
--
Marion Hakanson
OHSU High Performance Computing Group
- patch for automake-1.8.5,
Marion Hakanson <=