diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-11-20 09:55:51 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-11-28 07:59:42 +0200 |
commit | fc5677a018d0c075dce8e566bf50cc0f084ff5e9 (patch) | |
tree | 61aa877107175849b479e8e6b8b4248eb03357a0 /gnu | |
parent | 9c97342939c0d891295768fb39804fc5f8d954e4 (diff) | |
download | guix-fc5677a018d0c075dce8e566bf50cc0f084ff5e9.tar guix-fc5677a018d0c075dce8e566bf50cc0f084ff5e9.tar.gz |
gnu: librsvg: Remove htmldir configure flag.
* gnu/packages/gnome.scm (librsvg)[arguments]: Update configure-flags
to remove the htmldir directory option.
Change-Id: Ia8a0d73d00edf899eac8c9e12071b92c0eef5258
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnome.scm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index e376929e22..1a746b066a 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3620,9 +3620,7 @@ for dealing with different structured file formats.") (apply (assoc-ref gnu:%standard-phases 'configure) #:configure-flags (list "--disable-static" - "--enable-vala" - (string-append "--with-html-dir=" #$output - "/share/gtk-doc/html")) + "--enable-vala") args))) (add-after 'configure 'dont-vendor-self (lambda* (#:key vendor-dir #:allow-other-keys) |