# HG changeset patch # User Bruno Haible # Date 1267996281 -3600 # Node ID cb00143b4bf64214a88b9443c8db3d61e8c57724 # Parent 958a8b2b6f9e820f6d744e9d27a1ca23bebe79b3 Exclude lib-ignore module. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-03-07 Bruno Haible + + * gnulib-tool (func_create_testdir): Don't use 'lib-ignore' module + among default module list. + 2010-03-07 Bruno Haible Fix link error on platforms with GNU libiconv. diff --git a/gnulib-tool b/gnulib-tool --- a/gnulib-tool +++ b/gnulib-tool @@ -4410,8 +4410,9 @@ # 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`