]> Savannah Git Hosting - gnulib.git/commitdiff
Fix failure of 'gnulib-tool --create-testdir' with all modules.
authorBruno Haible <bruno@clisp.org>
Mon, 22 Oct 2018 18:32:41 +0000 (20:32 +0200)
committerBruno Haible <bruno@clisp.org>
Mon, 22 Oct 2018 19:22:08 +0000 (21:22 +0200)
* gnulib-tool (func_create_testdir): Exclude 'timevar' module.

ChangeLog
gnulib-tool

index 09fe7da931471827d21aee2f1a91d28a286adfcf..d812249a19d9b80d3a6ff2e76e4dd200bda0bbfe 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2018-10-22  Bruno Haible  <bruno@clisp.org>
+
+       Fix failure of 'gnulib-tool --create-testdir' with all modules.
+       * gnulib-tool (func_create_testdir): Exclude 'timevar' module.
+
 2018-10-21  Bruno Haible  <bruno@clisp.org>
 
        locale: Ease integration with GNU libintl.
index c639f5acea024c8f76e668768fdfd571659c0c7d..3c27c8a28961a9dd3ddbfb070822b217827e4da8 100755 (executable)
@@ -5980,10 +5980,11 @@ func_create_testdir ()
     # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
     # Except non-recursive-gnulib-prefix-hack, which represents a nonstandard
     # way of using Automake.
+    # Except timevar, which lacks the required file timevar.def.
     # Except ftruncate, mountlist, which abort the configuration on mingw. FIXME.
     # Except lib-ignore, which leads to link errors when Sun C++ is used. FIXME.
     modules=`func_all_modules`
-    modules=`for m in $modules; do case $m in config-h | non-recursive-gnulib-prefix-hack | ftruncate | mountlist | lib-ignore) ;; *) echo $m;; esac; done`
+    modules=`for m in $modules; do case $m in config-h | non-recursive-gnulib-prefix-hack | timevar | ftruncate | mountlist | lib-ignore) ;; *) echo $m;; esac; done`
   fi
   specified_modules="$modules"