Mercurial > hg > octave-kai > gnulib-hg
changeset 12923:cb00143b4bf6
Exclude lib-ignore module.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sun, 07 Mar 2010 22:11:21 +0100 (2010-03-07) |
parents | 958a8b2b6f9e |
children | 2f6ee74bea83 |
files | ChangeLog gnulib-tool |
diffstat | 2 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +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.
--- 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`