From: Bruno Haible Date: Fri, 20 Oct 2006 13:42:39 +0000 (+0000) Subject: Don't include ftruncate and mountlist by default. X-Git-Tag: cvs-readonly~1685 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=10e4e6d96d32fef84d7fe2e264160bb4d9c09b05;p=gnulib.git Don't include ftruncate and mountlist by default. --- diff --git a/ChangeLog b/ChangeLog index fc66eee55..35fbc8d25 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 487fc2884..a705f23a6 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`