Hi Paul,
Paul Eggert <[email protected]> writes:
> diff --git a/modules/backupfile b/modules/backupfile
> index b02cdc1cb1..7945c92b6e 100644
> --- a/modules/backupfile
> +++ b/modules/backupfile
> @@ -17,10 +17,10 @@ closedir
> d-ino
> fcntl-h
> ialloc
> +irealloc
> memcmp
> opendirat
> readdir
> -realloc-gnu
In Coreutils, I see:
./bootstrap
[...]
gnulib-tool: warning: module irealloc doesn't exist
The irealloc function is part of the ialloc module, so adding irealloc
here wasn't needed.
I've pushed the attached patch fixing it.
Collin
>From 3f44e474efd0eae2333b94c74b2c4193cc17fdba Mon Sep 17 00:00:00 2001
From: Collin Funk <[email protected]>
Date: Tue, 29 Oct 2024 20:12:25 -0700
Subject: [PATCH] backupfile: Remove non-existent module dependency.
* modules/backupfile (Depends-on): Remove irealloc dependency since the
function is a part of the ialloc module.
---
ChangeLog | 6 ++++++
modules/backupfile | 1 -
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
index d2cd41c091..73b74b9641 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2024-10-29 Collin Funk <[email protected]>
+
+ backupfile: Remove non-existent module dependency.
+ * modules/backupfile (Depends-on): Remove irealloc dependency since the
+ function is a part of the ialloc module.
+
2024-10-29 Bruno Haible <[email protected]>
Fix indentation in config.h (regression 2024-09-25).
diff --git a/modules/backupfile b/modules/backupfile
index 7945c92b6e..4d7aceae3d 100644
--- a/modules/backupfile
+++ b/modules/backupfile
@@ -17,7 +17,6 @@ closedir
d-ino
fcntl-h
ialloc
-irealloc
memcmp
opendirat
readdir
--
2.47.0