From: Bruno Haible Date: Fri, 22 Sep 2006 15:43:18 +0000 (+0000) Subject: Don't include the config-h module in megatestdir. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=69fd76cff69e33280ea5140881205f1f105d19dd;p=pspp Don't include the config-h module in megatestdir. --- diff --git a/ChangeLog b/ChangeLog index 4f5fb06e94..e5d18f611a 100644 --- 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 index b334e18d13..7ebd3cf610 100755 --- 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_create_megatestdir () 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"