changeset 7533:029a26ecb19a

Don't include ftruncate and mountlist by default.
author Bruno Haible <bruno@clisp.org>
date Fri, 20 Oct 2006 13:42:39 +0000
parents c24b9100f102
children 4f297f9ffb3a
files ChangeLog gnulib-tool
diffstat 2 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-10-19  Bruno Haible  <bruno@clisp.org>
+
+	* gnulib-tool (func_create_testdir): Don't include ftruncate and
+	mountlist by default.
+
 2006-10-16  Bruno Haible  <bruno@clisp.org>
 
 	* lib/c-strstr.c: Include c-strstr.h.
--- 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 @@
     # 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`