From: Carsten Haitzler Date: Mon, 30 Apr 2012 12:04:50 +0000 (+0000) Subject: lets get rid of the ()'s in filenames to make bsd users with their X-Git-Tag: submit/efl/20131021.015651~5025 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b731b036d096ed2e172ffd8ede913d21ab5a08ec;p=platform%2Fupstream%2Fenlightenment.git lets get rid of the ()'s in filenames to make bsd users with their ancient make tools work. SVN revision: 70556 --- diff --git a/src/modules/illume-keyboard/dicts/English_(US).dic b/src/modules/illume-keyboard/dicts/English_US.dic similarity index 100% rename from src/modules/illume-keyboard/dicts/English_(US).dic rename to src/modules/illume-keyboard/dicts/English_US.dic diff --git a/src/modules/illume-keyboard/dicts/English_(US)_Small.dic b/src/modules/illume-keyboard/dicts/English_US_Small.dic similarity index 100% rename from src/modules/illume-keyboard/dicts/English_(US)_Small.dic rename to src/modules/illume-keyboard/dicts/English_US_Small.dic diff --git a/src/modules/illume-keyboard/dicts/Makefile.am b/src/modules/illume-keyboard/dicts/Makefile.am index 04e4ece..c4c57dd 100644 --- a/src/modules/illume-keyboard/dicts/Makefile.am +++ b/src/modules/illume-keyboard/dicts/Makefile.am @@ -3,7 +3,7 @@ MODULE = illume-keyboard filesdir = $(libdir)/enlightenment/modules/$(MODULE)/dicts files_DATA = \ - English_(US).dic \ - English_(US)_Small.dic + English_US.dic \ + English_US_Small.dic EXTRA_DIST = $(files_DATA) diff --git a/src/modules/illume-keyboard/e_kbd_int.c b/src/modules/illume-keyboard/e_kbd_int.c index b35f843..012c3c8 100644 --- a/src/modules/illume-keyboard/e_kbd_int.c +++ b/src/modules/illume-keyboard/e_kbd_int.c @@ -1790,7 +1790,7 @@ e_kbd_int_new(const char *themedir, const char *syskbds, const char *sysdicts) if (il_kbd_cfg->dict) ki->kbuf = e_kbd_buf_new(ki->sysdicts, il_kbd_cfg->dict); else - ki->kbuf = e_kbd_buf_new(ki->sysdicts, "English_(US).dic"); + ki->kbuf = e_kbd_buf_new(ki->sysdicts, "English_US.dic"); _e_kbd_int_layouts_list_update(ki); diff --git a/src/modules/illume-keyboard/e_mod_config.c b/src/modules/illume-keyboard/e_mod_config.c index 2bfa17d..2ec7170 100644 --- a/src/modules/illume-keyboard/e_mod_config.c +++ b/src/modules/illume-keyboard/e_mod_config.c @@ -48,7 +48,7 @@ il_kbd_config_init(E_Module *m) il_kbd_cfg->version = 0; il_kbd_cfg->use_internal = 1; il_kbd_cfg->run_keyboard = NULL; - il_kbd_cfg->dict = eina_stringshare_add("English_(US).dic"); + il_kbd_cfg->dict = eina_stringshare_add("English_US.dic"); il_kbd_cfg->zoom_level = 4; il_kbd_cfg->slide_dim = 4; il_kbd_cfg->hold_timer = 0.25;