On 2/18/24 4:44 AM, Bruno Haible wrote:
> The full list of header files for which #include "..." is to be avoided is:
> 
> alloca.h
> arpa_inet.h
> assert.h

I saw that arpa_inet.h had an underscore instead of a slash in this
message but forgot to fix it when I pasted it into the Makefile... Sorry
about that. I attached the fix.

Collin
From 1f526466d4a2c54ea227e438c12127fc305c2a43 Mon Sep 17 00:00:00 2001
From: Collin Funk <collin.fu...@gmail.com>
Date: Tue, 20 Feb 2024 12:16:40 -0800
Subject: [PATCH] maint.mk: Fix include header typo.

top/maint.mk: Change arpa_inet.h to arpa/inet.h.
---
 ChangeLog    | 5 +++++
 top/maint.mk | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index ef069e2e94..32985d0abb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-02-20  Collin Funk  <collin.fu...@gmail.com>
+
+	maint.mk: Fix include header typo.
+	* top/maint.mk: Change arpa_inet.h to arpa/inet.h.
+
 2024-02-20  Bruno Haible  <br...@clisp.org>
 
 	*printf-posix: Avoid crash in a configure test.
diff --git a/top/maint.mk b/top/maint.mk
index 2278619931..c30e71ba6e 100644
--- a/top/maint.mk
+++ b/top/maint.mk
@@ -541,7 +541,7 @@ sc_require_config_h_first:
 # Keep sorted.
 gl_prefer_angle_bracket_headers_ ?= \
   alloca.h		\
-  arpa_inet.h		\
+  arpa/inet.h		\
   assert.h		\
   ctype.h		\
   dirent.h		\
-- 
2.39.2

Reply via email to