Reported by Pádraig Brady in
<https://lists.gnu.org/r/coreutils/2026-03/msg00015.html>.
* pygnulib/GLConfig.py (__init__): If --local-symlink or
--local-hardlink are not specified, use the value specified by --symlink
or --hardlink for local modules instead of copying.
+2026-03-05 Collin Funk <collin.funk1@gmail.com>
+
+ gnulib-tool.py: Use --symlink or --hardlink for local modules.
+ Reported by Pádraig Brady in
+ <https://lists.gnu.org/r/coreutils/2026-03/msg00015.html>.
+ * pygnulib/GLConfig.py (__init__): If --local-symlink or
+ --local-hardlink are not specified, use the value specified by --symlink
+ or --hardlink for local modules instead of copying.
+
2026-03-03 Bruno Haible <bruno@clisp.org>
Don't use 'typeof' built-in with -std=c99 or -std=c11.
# lcopymode (--local-symlink and --local-hardlink)
self.resetLCopyMode()
if lcopymode == None:
- # Default to copying.
- lcopymode = CopyAction.Copy
+ # Default to the mode used for non-local modules.
+ lcopymode = copymode
self.setLCopyMode(lcopymode)
# configure_ac
self.resetAutoconfFile()