diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-07-12 20:07:12 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-07-12 20:07:12 +0200 |
commit | 7555d539245ff3456848c02d61f9e601ee5af463 (patch) | |
tree | 6f619e95ae03adbd178200f68e839dd4fe537137 | |
parent | 70f2b0f97d9bda374bf4a6deddfde2ea3e38d016 (diff) | |
download | patches-7555d539245ff3456848c02d61f9e601ee5af463.tar patches-7555d539245ff3456848c02d61f9e601ee5af463.tar.gz |
gnu: gnome-online-accounts: Fix cyclic reference in outputs.
This exploits a new feature of 'gobject-introspection-absolute-shlibs.patch'.
* gnu/packages/gnome.scm (gnome-online-accounts)[arguments]: Set the "outputs"
variable before building.
-rw-r--r-- | gnu/packages/gnome.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 9c9f69258a..4c7847ba94 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5089,6 +5089,9 @@ window manager.") (("@libdir@") (string-append lib "/lib")) (("@includedir@") (string-append lib "/include")) (("@datadir@") (string-append lib "/share"))) + ;; Make sure gobject-introspection knows about the output + ;; too (see <https://bugs.gnu.org/36535>). + (setenv "outputs" "out lib") #t)))))) (native-inputs `(("glib:bin" ,glib "bin") ; for glib-compile-schemas, etc. |