From 94a90dcd0c3f540a91fa72038466c8af73730dcd Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sun, 7 Mar 2010 22:11:21 +0100 Subject: [PATCH] Exclude lib-ignore module. --- ChangeLog | 5 +++++ gnulib-tool | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b5060f3c35..e97760a825 100644 --- 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 index 67349c6723..a5e2e422b6 100755 --- a/gnulib-tool +++ b/gnulib-tool @@ -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` -- 2.30.2