diff options
author | Fridrich Strba <fridrich.strba@bluewin.ch> | 2010-03-10 19:17:16 +0800 |
---|---|---|
committer | Fridrich Strba <fridrich.strba@bluewin.ch> | 2010-03-10 19:18:12 +0800 |
commit | a674eab94dd55978a6fa8db1fbe57bf419377f43 (patch) | |
tree | a59c00218fc0a278c223b10594671fc72a761f41 /e-util/e-win32-reloc.c | |
parent | 92e1807bd758995edc6600856c3fb0a4ee546fdf (diff) | |
download | gsoc2013-evolution-a674eab94dd55978a6fa8db1fbe57bf419377f43.tar.gz gsoc2013-evolution-a674eab94dd55978a6fa8db1fbe57bf419377f43.tar.zst gsoc2013-evolution-a674eab94dd55978a6fa8db1fbe57bf419377f43.zip |
Update win32 directory relocation and some consistency cleanup
Diffstat (limited to 'e-util/e-win32-reloc.c')
-rw-r--r-- | e-util/e-win32-reloc.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/e-util/e-win32-reloc.c b/e-util/e-win32-reloc.c index 2f31d647ac..d01c4c820e 100644 --- a/e-util/e-win32-reloc.c +++ b/e-util/e-win32-reloc.c @@ -45,10 +45,11 @@ static const gchar *iconsdir; static const gchar *imagesdir; static const gchar *libdir; static const gchar *libexecdir; +static const gchar *moduledir; static const gchar *plugindir; static const gchar *prefix; static const gchar *privdatadir; -static const gchar *search_rule_dir; +static const gchar *ruledir; static const gchar *sounddir; static const gchar *sysconfdir; static const gchar *toolsdir; @@ -134,9 +135,10 @@ setup (void) imagesdir = replace_prefix (full_prefix, EVOLUTION_IMAGESDIR); libdir = replace_prefix (full_prefix, EVOLUTION_LIBDIR); libexecdir = replace_prefix (full_prefix, EVOLUTION_LIBEXECDIR); + moduledir = replace_prefix (full_prefix, EVOLUTION_MODULEDIR); plugindir = replace_prefix (full_prefix, EVOLUTION_PLUGINDIR); privdatadir = replace_prefix (full_prefix, EVOLUTION_PRIVDATADIR); - search_rule_dir = replace_prefix (full_prefix, SEARCH_RULE_DIR); + ruledir = replace_prefix (full_prefix, EVOLUTION_RULEDIR); sounddir = replace_prefix (full_prefix, EVOLUTION_SOUNDDIR); sysconfdir = replace_prefix (full_prefix, EVOLUTION_SYSCONFDIR); toolsdir = replace_prefix (full_prefix, EVOLUTION_TOOLSDIR); @@ -169,10 +171,11 @@ GETTER(imagesdir) GETTER(libdir) GETTER(libexecdir) GETTER(localedir) +GETTER(moduledir) GETTER(plugindir) GETTER(prefix) GETTER(privdatadir) -GETTER(search_rule_dir) +GETTER(ruledir) GETTER(sounddir) GETTER(sysconfdir) GETTER(toolsdir) |