bug-libtool
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Porting libtool to minix3: testsuite fails because configure parms a


From: Ralf Wildenhues
Subject: Re: Porting libtool to minix3: testsuite fails because configure parms are not propagated.
Date: Tue, 16 Mar 2010 22:28:34 +0100
User-agent: Mutt/1.5.20 (2009-10-28)

Hello Kees,

thanks for the report.

* Kees van Reeuwijk wrote on Tue, Mar 16, 2010 at 02:08:57PM CET:
> I have tried porting libtool to the minix3 operating system (see
> www.linux3.org). For a large part it seems to be working: running
> configure and then gmake all install works. However, there is one
> big obstacle: make check fails because some configure parameters are
> not propagated.

Please post the configure command line you use.  We propagate some
values to the testsuie, you can propagate environment variable settings
to the new testsuite at least by using TESTSUITEFLAGS='var=value ...'
(see README for details).  With the patch below, it should be possible
to also add more arguments by setting configure_options.

If you get it working, we'd be interested in testsuite results, and the
port itself of course.

Thanks,
Ralf

        * tests/testsuite.at: Honor arguments in $configure_options.

diff --git a/tests/testsuite.at b/tests/testsuite.at
index 7f9afe9..5bd6068 100644
--- a/tests/testsuite.at
+++ b/tests/testsuite.at
@@ -1,6 +1,6 @@
 # Process with autom4te to create an -*- Autotest -*- test suite.
 #
-#   Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Free Software
+#   Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
 #   Foundation, Inc.
 #   Written by Gary V. Vaughan, 2004
 #
@@ -40,7 +40,7 @@ done
 export ACLOCAL AUTOHEADER AUTOCONF AUTOMAKE AUTORECONF
 eval `$LIBTOOL --config | grep '^EGREP='`
 eval `$LIBTOOL --config | $EGREP 
'^(host|host_os|host_alias|build|build_alias)='`
-configure_options=--prefix=/nonexistent
+configure_options="$configure_options --prefix=/nonexistent"
 if test -n "$host_alias"; then
   configure_options="$configure_options --host $host_alias"
 fi




reply via email to

[Prev in Thread] Current Thread [Next in Thread]