summaryrefslogtreecommitdiff
path: root/gnulib-tool
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2009-05-02 13:40:19 +0200
committerBruno Haible <bruno@clisp.org>2009-05-02 13:40:19 +0200
commit52ba377209500b66aaeb6142b3cd979a406a0d88 (patch)
treebda598d4ecf099b095ed61953d0d6cd7b66cd35e /gnulib-tool
parent698c081b5687fc9920947bb74f3e288915dd7d00 (diff)
downloadgnulib-52ba377209500b66aaeb6142b3cd979a406a0d88.tar.gz
Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
Diffstat (limited to 'gnulib-tool')
-rwxr-xr-xgnulib-tool6
1 files changed, 2 insertions, 4 deletions
diff --git a/gnulib-tool b/gnulib-tool
index 74ea4fc8a9..2c00b1fbe2 100755
--- a/gnulib-tool
+++ b/gnulib-tool
@@ -3796,10 +3796,9 @@ func_create_testdir ()
if test -z "$modules"; then
# All modules together.
# Except config-h, which breaks all modules which use HAVE_CONFIG_H.
- # Except fnmatch-posix, which conflicts with fnmatch-gnu. FIXME.
# Except ftruncate, mountlist, which abort the configuration on mingw. FIXME.
modules=`func_all_modules`
- modules=`for m in $modules; do case $m in config-h | fnmatch-posix | ftruncate | mountlist) ;; *) echo $m;; esac; done`
+ modules=`for m in $modules; do case $m in config-h | ftruncate | mountlist) ;; *) echo $m;; esac; done`
fi
modules=`for m in $modules; do echo $m; done | LC_ALL=C sort -u`
@@ -4288,8 +4287,7 @@ func_create_megatestdir ()
done
# Then, all modules all together.
# Except config-h, which breaks all modules which use HAVE_CONFIG_H.
- # Except fnmatch-posix, which conflicts with fnmatch-gnu. FIXME.
- allmodules=`for m in $allmodules; do if test $m != config-h && test $m != fnmatch-posix; then echo $m; fi; done`
+ allmodules=`for m in $allmodules; do if test $m != config-h; then echo $m; fi; done`
func_create_testdir "$megatestdir/ALL" "$allmodules"
func_append megasubdirs "ALL"