This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 05c35a33de gnu: texinfo-4: Allow incompatible pointer types not just 
on the Hurd.
05c35a33de is described below

commit 05c35a33de56ea54cab07b79ff85ed66623abd08
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Thu Feb 26 10:18:56 2026 +0100

    gnu: texinfo-4: Allow incompatible pointer types not just on the Hurd.
    
    * gnu/packages/texinfo.scm (texinfo-4)[arguments]: Remove conditional.
    
    Change-Id: Ie279cb7b34a637867d97e753d60e2483d7b8069c
---
 gnu/packages/texinfo.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/texinfo.scm b/gnu/packages/texinfo.scm
index 47d6a689e4..2116e1d2a9 100644
--- a/gnu/packages/texinfo.scm
+++ b/gnu/packages/texinfo.scm
@@ -209,9 +209,9 @@ is on expressing the content semantically, avoiding 
physical markup commands.")
                         (invoke "make" "-C" "tools/gnulib/lib")
                         #t)))
                   '()))))
-      (if (or (target-hurd64?) (%current-target-system))
-          (list #:configure-flags 
''("CFLAGS=-Wno-error=incompatible-pointer-types"))
-          '())))))
+      ;; Ignore that size_t* and int* are used interchangeably.
+      (list #:configure-flags
+            '(list "CFLAGS=-Wno-error=incompatible-pointer-types"))))))
 
 (define-public info-reader
   ;; The idea of this package is to have the standalone Info reader without

Reply via email to