From 10e4e6d96d32fef84d7fe2e264160bb4d9c09b05 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Fri, 20 Oct 2006 13:42:39 +0000 Subject: [PATCH] Don't include ftruncate and mountlist by default. --- ChangeLog | 5 +++++ gnulib-tool | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index fc66eee55d..35fbc8d259 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-10-19 Bruno Haible + + * gnulib-tool (func_create_testdir): Don't include ftruncate and + mountlist by default. + 2006-10-16 Bruno Haible * lib/c-strstr.c: Include c-strstr.h. diff --git a/gnulib-tool b/gnulib-tool index 487fc2884c..a705f23a6a 100755 --- a/gnulib-tool +++ b/gnulib-tool @@ -22,7 +22,7 @@ progname=$0 package=gnulib -cvsdatestamp='$Date: 2006-10-19 13:24:55 $' +cvsdatestamp='$Date: 2006-10-20 13:42:39 $' last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'` version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'` nl=' @@ -2161,8 +2161,9 @@ func_create_testdir () # 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 if test $m != config-h && test $m != fnmatch-posix; then echo $m; fi; done` + modules=`for m in $modules; do case $m in config-h | fnmatch-posix | ftruncate | mountlist) ;; *) echo $m;; esac; done` fi modules=`for m in $modules; do echo $m; done | LC_ALL=C sort -u` -- 2.30.2