diff options
author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2024-12-12 14:35:35 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:15 +0200 |
commit | a1e9e7f3efeeb123487b4e9fb2efa6f24593941d (patch) | |
tree | e3541b786bf1b67936e4498bdc9e8dccc265f49d | |
parent | f40f48b2f70e0244d69884db97e0d28c40f6a89c (diff) |
gnu: git: Use -Wno-error= for Hurd cross-build.
* gnu/packages/version-control.scm (git-minimal)[arguments]: Insert "error="
in #:configure-flags.
Change-Id: I8d2197b7eb5a1275aebe4d817ff0db77dee55134
-rw-r--r-- | gnu/packages/version-control.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 5d1fd57606..76ab8e9d38 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -364,7 +364,7 @@ Python 3.3 and later, rather than on Python 2.") ;; nars; see <https://bugs.gnu.org/21949>. "NO_INSTALL_HARDLINKS=indeed" #$@(if (or (target-hurd64?) (%current-target-system)) - #~("-Wno-implicit-function-declaration") + #~("-Wno-error=implicit-function-declaration") #~())) #:phases #~(modify-phases %standard-phases |