diff options
author | Bruno Victal <mirai@makinata.eu> | 2023-10-09 21:06:21 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:11 +0200 |
commit | 75edbd4f1ee15e43febef75017a5727719c0dd87 (patch) | |
tree | 41e2e4497d3e837258bb3f3bc20d4ff44d92b61d | |
parent | 657e0209b64a58a2dd4b3a9a52c0f74d289861ed (diff) | |
download | guix-75edbd4f1ee15e43febef75017a5727719c0dd87.tar.gz guix-75edbd4f1ee15e43febef75017a5727719c0dd87.zip |
gnu: gtk: Drop docbook workaround.
* gnu/packages/gtk.scm (gtk)[arguments]<#:phases>: Drop docbook workaround.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
-rw-r--r-- | gnu/packages/gtk.scm | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 5febaedf7c..8d4e047a5a 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -1207,11 +1207,6 @@ application suites.") "find_program('rst2man.py'")))) (add-after 'unpack 'patch (lambda* (#:key inputs native-inputs outputs #:allow-other-keys) - ;; Correct DTD resources of docbook. - (substitute* (find-files "docs" "\\.xml$") - (("http://www.oasis-open.org/docbook/xml/4.3/") - (string-append #$(this-package-native-input "docbook-xml") - "/xml/dtd/docbook/"))) ;; Disable building of icon cache. (substitute* "meson.build" (("gtk_update_icon_cache: true") |