Hi Jim,

I noticed a small mistake in this commit:

    maint: reflect gnulib module renamings
    
    * bootstrap.conf: Some gnulib modules are now deprecated in favor of
    new names with a "-h" suffix.  Induce this change with the following:
      re='inttypes|realloc-gnu|sys_stat'
      perl -pi -e 's{^('"$re"')$}{$1-h}' bootstrap.conf

It renamed realloc-gnu to realloc-gnu-h which does not exist.

Patch attached.

Collin

>From 9fde49b9b828047a000165cd5e9ad4923c5a77aa Mon Sep 17 00:00:00 2001
From: Collin Funk <collin.fu...@gmail.com>
Date: Sun, 2 Feb 2025 19:48:05 -0800
Subject: [PATCH] maint: fix mistake in module renaming

* boostrap.conf (gnulib_modules): Rename realloc-gnu-h to realloc-gnu.
---
 bootstrap.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bootstrap.conf b/bootstrap.conf
index 0da2c3b..7918cac 100644
--- a/bootstrap.conf
+++ b/bootstrap.conf
@@ -57,7 +57,7 @@ manywarnings
 openat-safer
 printf-posix
 readme-release
-realloc-gnu-h
+realloc-gnu
 savedir
 sigaction
 stat-time
-- 
2.48.1

Reply via email to