diff options
author | Raghav Gururajan <rg@raghavgururajan.name> | 2021-04-07 16:42:26 -0400 |
---|---|---|
committer | Raghav Gururajan <rg@raghavgururajan.name> | 2021-04-19 12:09:54 -0400 |
commit | 9011877385cf6e1d2d83c7c08ac64e765b59c004 (patch) | |
tree | 35528cf264cae4c101305070ce33f7513c86369e | |
parent | b66269db5f91ea79524505fdad018aac2055bd99 (diff) | |
download | guix-9011877385cf6e1d2d83c7c08ac64e765b59c004.tar.gz guix-9011877385cf6e1d2d83c7c08ac64e765b59c004.zip |
gnu: librsvg: Correct unbound variable.
* gnu/packages/gnome.scm (librsvg)[phases](gnu-configure): Modify.
-rw-r--r-- | gnu/packages/gnome.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index f393e768af..bcecff5b0a 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3439,7 +3439,7 @@ for dealing with different structured file formats.") (list "--disable-static" "--enable-vala" (string-append "--with-html-dir=" - (assoc-ref %outputs "doc") + (assoc-ref outputs "doc") "/share/gtk-doc/html"))))) (add-after 'configure 'dont-vendor-self (lambda* (#:key vendor-dir #:allow-other-keys) |