diff options
author | Ludovic Courtès <ludo@gnu.org> | 2025-01-16 12:32:22 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-01-16 12:51:49 +0100 |
commit | e7336ba225ddc9e7374d196029f10b541a60855f (patch) | |
tree | d7f010ae92fedb7a8150a2fc5df64568a2e107fb /gnu/packages/documentation.scm | |
parent | 7c79be186bfde98848d95bdd0ceeba87ccb1cf32 (diff) |
gnu: doxygen: Remove now unnecessary Hurd patch.
* gnu/packages/documentation.scm (doxygen)[arguments]: Remove
‘apply-patch’ phase.
* gnu/packages/patches/doxygen-hurd.patch: Remove.
* gnu/local.mk (dist_patch_DATA): Remove it.
Reported-by: yelninei
Change-Id: Ifa5eca19e0504b9c5df1f7a57c4d5c355049a41f
Diffstat (limited to 'gnu/packages/documentation.scm')
-rw-r--r-- | gnu/packages/documentation.scm | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gnu/packages/documentation.scm b/gnu/packages/documentation.scm index f0e37561f7..ce1640e93b 100644 --- a/gnu/packages/documentation.scm +++ b/gnu/packages/documentation.scm @@ -228,15 +228,7 @@ markup) can be customized and extended by the user.") (let ((/bin/sh (search-input-file inputs "/bin/sh"))) (substitute* "src/portable.cpp" (("/bin/sh") - /bin/sh))))) - #$@(if (target-hurd?) - #~((add-after 'unpack 'apply-patch - (lambda _ - (let ((patch-file - #$(local-file - (search-patch "doxygen-hurd.patch")))) - (invoke "patch" "--force" "-p1" "-i" patch-file))))) - #~())))) + /bin/sh)))))))) (synopsis "Generate documentation from annotated sources") (description "Doxygen is the de facto standard tool for generating documentation from annotated C++ sources, but it also supports other popular |