Re: [Autogen-users] Many tests failing due to value of LIBGUILE_PATH

2013-10-14 Thread Bruce Korb
On 10/14/13 10:10, Eric Bavier wrote: The real problem for most of these tests seems to be the use of /usr/bin/tr instead of just tr, since tr might not be installed at in /usr/bin. Yep. I need to add: TR=`command -v tr` test -x $TR || die 'tr' program is missing and _then_ use $TR.

Re: [Autogen-users] Many tests failing due to value of LIBGUILE_PATH

2013-10-11 Thread Eric Bavier
Bruce Korb bruce.k...@gmail.com writes: On 10/10/13 13:50, Eric Bavier wrote: Why not use LIBGUILE_PATH=`guile-config info libdir` instead? Because, cleverly, not all distributions distribute (install) guile-config. I suggested the guile-config option because I saw that guile-config was

[Autogen-users] Many tests failing due to value of LIBGUILE_PATH

2013-10-10 Thread Eric Bavier
I was working on packaging AutoGen for Guix (www.gnu.org/software/guix) and came across a number of failing tests with `make check` (19 of 24 in autoopts failed). The failure in most cases happened on line 126 of autoopts/test/defs, which attempts to cd to ${LIBGUILE_PATH}/../bin. The failure

Re: [Autogen-users] Many tests failing due to value of LIBGUILE_PATH

2013-10-10 Thread Bruce Korb
On 10/10/13 13:50, Eric Bavier wrote: I was working on packaging AutoGen for Guix (www.gnu.org/software/guix) and came across a number of failing tests with `make check` (19 of 24 in autoopts failed). The failure in most cases happened on line 126 of autoopts/test/defs, which attempts to cd