changeset 11737:351c1d4b1ca6

Undo last gnulib-tool commit: maintainer-makefile is fixed.
author Bruno Haible <bruno@clisp.org>
date Sat, 25 Jul 2009 22:55:21 +0200
parents 9f4d092a26a4
children 4c3c845a79ee
files ChangeLog gnulib-tool
diffstat 2 files changed, 2 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sat Jul 25 15:43:11 2009 +0200
+++ b/ChangeLog	Sat Jul 25 22:55:21 2009 +0200
@@ -14,12 +14,6 @@
 	defined as macros. Needed on QNX 6.4.1.
 	Reported by Matt Kraai <mkraai@beckman.com>.
 
-2009-07-25  Bruno Haible  <bruno@clisp.org>
-
-	* gnulib-tool (func_create_testdir, func_create_megatestdir): Exclude
-	the maintainer-makefile module.
-	Reported by Matt Kraai <mkraai@beckman.com>.
-
 2009-07-23  Jim Meyering  <meyering@redhat.com>
 
 	maint.mk: invoke "make dist" with a working value of XZ_OPT
--- a/gnulib-tool	Sat Jul 25 15:43:11 2009 +0200
+++ b/gnulib-tool	Sat Jul 25 22:55:21 2009 +0200
@@ -3818,10 +3818,9 @@
   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 | maintainer-makefile | ftruncate | mountlist) ;; *) echo $m;; esac; done`
+    modules=`for m in $modules; do case $m in config-h | ftruncate | mountlist) ;; *) echo $m;; esac; done`
   fi
   modules=`for m in $modules; do echo $m; done | LC_ALL=C sort -u`
 
@@ -4312,8 +4311,7 @@
   done
   # Then, all modules all together.
   # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
-  # 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`
+  allmodules=`for m in $allmodules; do if test $m != config-h; then echo $m; fi; done`
   func_create_testdir "$megatestdir/ALL" "$allmodules"
   func_append megasubdirs "ALL"