# HG changeset patch # User Bruno Haible # Date 1158939798 0 # Node ID 6c5c8c8b93a3d9c2bacc53f3e9d9109884e197eb # Parent da9a7fb22bf8c566b1dcb9ce48b4fdbee24b74cd Don't include the config-h module in megatestdir. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-09-22 Bruno Haible + + * gnulib-tool (func_create_megatestdir): Don't include the config-h + module. + Suggested by Ralf Wildenhues. + 2006-09-22 Simon Josefsson * modules/gc-sha1: diff --git a/gnulib-tool b/gnulib-tool --- a/gnulib-tool +++ b/gnulib-tool @@ -22,7 +22,7 @@ progname=$0 package=gnulib -cvsdatestamp='$Date: 2006-09-22 12:47:54 $' +cvsdatestamp='$Date: 2006-09-22 15:43:18 $' last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'` version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'` nl=' @@ -2382,8 +2382,9 @@ func_append megasubdirs "$onemodule " 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 != fnmatch-posix; then echo $m; fi; done` + allmodules=`for m in $allmodules; do if test $m != config-h && test $m != fnmatch-posix; then echo $m; fi; done` func_create_testdir "$megatestdir/ALL" "$allmodules" func_append megasubdirs "ALL"