Exclude lib-ignore module.
authorBruno Haible <bruno@clisp.org>
Sun, 7 Mar 2010 21:11:21 +0000 (22:11 +0100)
committerBruno Haible <bruno@clisp.org>
Sun, 7 Mar 2010 21:11:21 +0000 (22:11 +0100)
ChangeLog
gnulib-tool

index b5060f3..e97760a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2010-03-07  Bruno Haible  <bruno@clisp.org>
 
+       * gnulib-tool (func_create_testdir): Don't use 'lib-ignore' module
+       among default module list.
+
+2010-03-07  Bruno Haible  <bruno@clisp.org>
+
        Fix link error on platforms with GNU libiconv.
        * modules/unistr/u8-strcoll-tests (Makefile): Define
        test_u8_strcoll_LDADD.
index 67349c6..a5e2e42 100755 (executable)
@@ -4410,8 +4410,9 @@ func_create_testdir ()
     # All modules together.
     # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
     # Except ftruncate, mountlist, which abort the configuration on mingw. FIXME.
+    # Except lib-ignore, which leads to link errors when Sun C++ is used. FIXME.
     modules=`func_all_modules`
-    modules=`for m in $modules; do case $m in config-h | ftruncate | mountlist) ;; *) echo $m;; esac; done`
+    modules=`for m in $modules; do case $m in config-h | ftruncate | mountlist | lib-ignore) ;; *) echo $m;; esac; done`
   fi
   modules=`for m in $modules; do echo $m; done | LC_ALL=C sort -u`