+2024-02-29 Collin Funk <collin.funk1@gmail.com>
+
+ gnulib-tool.py: Follow gnulib-tool changes, part 34.
+ Follow gnulib-tool change
+ 2017-05-15 Bruno Haible <bruno@clisp.org>
+ gnulib-tool: Fix generated code when libtests contains module 'alloca'.
+ * pygnulib/GLEmiter.py (GLEmiter.tests_Makefile_am): Use @ALLOCA@ for
+ libtests.a instead of @LTALLOCA@.
+
2024-02-29 Collin Funk <collin.funk1@gmail.com>
gnulib-tool.py: Follow gnulib-tool changes, part 33.
--------------------------------------------------------------------------------
-commit 0414a24cf57f1569b0b4f2a0f22898a0943dfc14
-Author: Bruno Haible <bruno@clisp.org>
-Date: Mon May 15 23:13:57 2017 +0200
-
- gnulib-tool: Fix generated code when libtests contains module 'alloca'.
-
- * gnulib-tool (func_emit_tests_Makefile_am): For libtests.a, use
- @ALLOCA@, not @LTALLOCA@.
-
---------------------------------------------------------------------------------
-
commit f30205c5d59bab2c035165158e7d5d65b07b8363
Author: Mathieu Lirzin <mthl@gnu.org>
Date: Tue Mar 14 12:19:40 2017 +0100
include_guard_prefix)
# Check if module is 'alloca'.
if libtests and str(module) == 'alloca':
- snippet += 'libtests_a_LIBADD += @%sALLOCA@\n' % perhapsLT
- snippet += 'libtests_a_DEPENDENCIES += @%sALLOCA@\n' % perhapsLT
+ snippet += 'libtests_a_LIBADD += @ALLOCA@\n'
+ snippet += 'libtests_a_DEPENDENCIES += @ALLOCA@\n'
# Skip the contents if it's entirely empty.
if not snippet.isspace():