diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-02-26 10:18:56 +0100 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2026-02-26 10:21:05 +0100 |
| commit | 05c35a33de56ea54cab07b79ff85ed66623abd08 (patch) | |
| tree | 10fd403bb0d47c8d4768a8d7779220097c2c774c | |
| parent | 75001089b5b43342c3e784d7ca2c42eade953211 (diff) | |
gnu: texinfo-4: Allow incompatible pointer types not just on the Hurd.
* gnu/packages/texinfo.scm (texinfo-4)[arguments]: Remove conditional.
Change-Id: Ie279cb7b34a637867d97e753d60e2483d7b8069c
| -rw-r--r-- | gnu/packages/texinfo.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/texinfo.scm b/gnu/packages/texinfo.scm index 47d6a689e42..2116e1d2a9a 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 |
