aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
author宋文武 <iyzsong@gmail.com>2016-04-27 22:04:38 +0800
committer宋文武 <iyzsong@gmail.com>2016-05-02 22:06:39 +0800
commit33cd9bef2c2715c21601ef7dde479df84aa2e7ec (patch)
treeebc867291c972b39ab75ba1c9822734eceaa58c9 /gnu
parentba666b07ea50d21e907f7152510a734dd844e169 (diff)
downloadguix-33cd9bef2c2715c21601ef7dde479df84aa2e7ec.tar
guix-33cd9bef2c2715c21601ef7dde479df84aa2e7ec.tar.gz
gnu: gedit: Fix build by passing '--disable-spell'.
* gnu/packages/gnome.scm (gedit)[arguments]: Pass '--disable-spell' to configure.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/gnome.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 3bd5c95e22..81a683602e 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -3960,7 +3960,8 @@ javascript engine and the GObject introspection framework.")
"1i0x1jd9x1vpv8lwdlzwf0ml8jxh3b3l6nlg6pbnfjw47w3y6iws"))))
(build-system glib-or-gtk-build-system)
(arguments
- `(#:phases
+ `(#:configure-flags '("--disable-spell") ; XXX: gspell not packaged yet
+ #:phases
(modify-phases %standard-phases
(add-after
'install 'wrap-gedit
@@ -3987,7 +3988,6 @@ javascript engine and the GObject introspection framework.")
("gtksourceview" ,gtksourceview)
("libpeas" ,libpeas)
("libxml2" ,libxml2)
- ("enchant" ,enchant)
("iso-codes" ,iso-codes)
("python-pygobject" ,python-pygobject)
("python" ,python)