diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-07-13 00:25:45 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-07-13 00:25:45 +0200 |
commit | 49b6dc2b4e02269850dacc71d9e7ec93139ec5b5 (patch) | |
tree | 75c62cc7620a7602a37067dd01268393aec32698 /gnu/packages/gnome.scm | |
parent | 7519dc95c7628ceeb5ed616604e8c432723a0a50 (diff) | |
parent | 2776b5d5bf3514717cf224de34c0bf2d894f1cee (diff) | |
download | patches-49b6dc2b4e02269850dacc71d9e7ec93139ec5b5.tar patches-49b6dc2b4e02269850dacc71d9e7ec93139ec5b5.tar.gz |
Merge branch 'staging'
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 206b52a5c0..dffebe92eb 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -6322,7 +6322,16 @@ fit the GNOME desktop.") (base32 "007k2bq8iplg4psdpz074r5d4zxvn4s95qym4rw9hs6giljbrf0n")))) (build-system meson-build-system) - (arguments '(#:glib-or-gtk? #t)) + (arguments '(#:glib-or-gtk? #t + #:phases (modify-phases %standard-phases + (add-after 'unpack 'patch-install-script + (lambda _ + ;; This script attempts to compile glib schemas + ;; and create an empty MIME database. We do + ;; that elsewhere, so prevent it from running. + (substitute* "build-aux/post-install.sh" + (("\\[ -z \"\\$DESTDIR\" \\]") "false")) + #t))))) (native-inputs `(("glib:bin" ,glib "bin") ("gobject-introspection" ,gobject-introspection) |