diff options
| author | Yelninei <yelninei@tutamail.com> | 2026-01-02 08:43:56 +0000 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2026-02-07 22:37:16 +0100 |
| commit | 3afbbf8ae30a63e6787b2dda11398ee89cee8782 (patch) | |
| tree | 13eee1c8f5ac920214bc906771a0303787854a1b /gnu/packages/xml.scm | |
| parent | 8b19b95599cf6221ed09aaed15b642af9dd9e5c1 (diff) | |
gnu: opensp: Fix build on the Hurd.
* gnu/packages/patches/opensp-maxpathlen.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/xml.scm (opensp): Add phase for adding the patch.
Change-Id: I47278396eb5ded8f654708019e51b7d88b13b976
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu/packages/xml.scm')
| -rw-r--r-- | gnu/packages/xml.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 38606df7a1f..1660feb8538 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1845,6 +1845,13 @@ modular implementation of XML-RPC for C and C++.") #:make-flags #~(list "TESTS_THAT_FAIL=") #:phases #~(modify-phases %standard-phases + #$@(if (target-hurd?) + #~((add-after 'unpack 'patch-hurd + (lambda _ + (let ((patch #$(local-file + (search-patch "opensp-maxpathlen.patch")))) + (invoke "patch" "--force" "-p1" "-i" patch))))) + #~()) (add-after 'unpack 'delete-configure ;; The configure script in the release was made with an older ;; Autoconf and lacks support for the `--docdir' option. |
