summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/enlightenment.scm6
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index 43ac388b25d..9989e2f5a8a 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -275,7 +275,8 @@ Libraries with some extra bells and whistles.")
275 (let ((xkeyboard (assoc-ref inputs "xkeyboard-config")) 275 (let ((xkeyboard (assoc-ref inputs "xkeyboard-config"))
276 (setxkbmap (assoc-ref inputs "setxkbmap")) 276 (setxkbmap (assoc-ref inputs "setxkbmap"))
277 (utils (assoc-ref inputs "util-linux")) 277 (utils (assoc-ref inputs "util-linux"))
278 (libc (assoc-ref inputs "libc"))) 278 (libc (assoc-ref inputs "libc"))
279 (efl (assoc-ref inputs "efl")))
279 ;; We need to patch the path to 'base.lst' to be able 280 ;; We need to patch the path to 'base.lst' to be able
280 ;; to switch the keyboard layout in E. 281 ;; to switch the keyboard layout in E.
281 (substitute* (list "src/modules/xkbswitch/e_mod_parse.c" 282 (substitute* (list "src/modules/xkbswitch/e_mod_parse.c"
@@ -290,6 +291,9 @@ Libraries with some extra bells and whistles.")
290 "src/modules/conf_intl/e_int_config_intl.c" 291 "src/modules/conf_intl/e_int_config_intl.c"
291 "src/modules/wizard/page_010.c") 292 "src/modules/wizard/page_010.c")
292 (("locale -a") (string-append libc "/bin/locale -a"))) 293 (("locale -a") (string-append libc "/bin/locale -a")))
294 (substitute* "src/bin/e_import_config_dialog.c"
295 (("%s/edje_cc -v %s %s %s\", e_prefix_bin_get\\(\\)")
296 (string-append efl "/bin/edje_cc -v %s %s %s\"")))
293 (substitute* "src/modules/everything/evry_plug_apps.c" 297 (substitute* "src/modules/everything/evry_plug_apps.c"
294 (("/usr/bin/") "")) 298 (("/usr/bin/") ""))
295 (substitute* "configure" 299 (substitute* "configure"