From 197367b31d8b1c17e2e1ac1b0d4391515919af19 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sat, 25 Jul 2009 11:11:49 +0200 Subject: [PATCH] Exclude the maintainer-makefile module from big testdir builds. --- ChangeLog | 6 ++++++ gnulib-tool | 6 ++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 55828ed54..dc5137a04 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-07-25 Bruno Haible + + * gnulib-tool (func_create_testdir, func_create_megatestdir): Exclude + the maintainer-makefile module. + Reported by Matt Kraai . + 2009-07-23 Jim Meyering maint.mk: invoke "make dist" with a working value of XZ_OPT diff --git a/gnulib-tool b/gnulib-tool index ea451ec4c..038b02ca9 100755 --- a/gnulib-tool +++ b/gnulib-tool @@ -3818,9 +3818,10 @@ func_create_testdir () if test -z "$modules"; then # All modules together. # Except config-h, which breaks all modules which use HAVE_CONFIG_H. + # Except maintainer-makefile, which requires a cfg.mk file. # Except ftruncate, mountlist, which abort the configuration on mingw. FIXME. modules=`func_all_modules` - modules=`for m in $modules; do case $m in config-h | ftruncate | mountlist) ;; *) echo $m;; esac; done` + modules=`for m in $modules; do case $m in config-h | maintainer-makefile | ftruncate | mountlist) ;; *) echo $m;; esac; done` fi modules=`for m in $modules; do echo $m; done | LC_ALL=C sort -u` @@ -4311,7 +4312,8 @@ func_create_megatestdir () done # Then, all modules all together. # Except config-h, which breaks all modules which use HAVE_CONFIG_H. - allmodules=`for m in $allmodules; do if test $m != config-h; then echo $m; fi; done` + # Except maintainer-makefile, which requires a cfg.mk file. + allmodules=`for m in $allmodules; do if test $m != config-h && test $m != maintainer-makefile; then echo $m; fi; done` func_create_testdir "$megatestdir/ALL" "$allmodules" func_append megasubdirs "ALL" -- 2.11.0