summaryrefslogtreecommitdiff
path: root/src/bin/e_prefix.c
diff options
context:
space:
mode:
authorCarsten Haitzler <raster@rasterman.com>2006-07-24 07:20:43 +0000
committerCarsten Haitzler <raster@rasterman.com>2006-07-24 07:20:43 +0000
commit2c1fc18240aca0ad792cf0c23cbe9e365a5b5b00 (patch)
tree942f09f22bd13bc84eae1f30a2b5751c3147668f /src/bin/e_prefix.c
parent1942ba83a6e3bed7f2bc819fdf580326e6d908c5 (diff)
downloadenlightenment-2c1fc18240aca0ad792cf0c23cbe9e365a5b5b00.tar.gz
fix prefix problem if using env vars
SVN revision: 24154
Diffstat (limited to 'src/bin/e_prefix.c')
-rw-r--r--src/bin/e_prefix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/e_prefix.c b/src/bin/e_prefix.c
index 495e1ce15e..17a8e996fb 100644
--- a/src/bin/e_prefix.c
+++ b/src/bin/e_prefix.c
@@ -58,7 +58,7 @@ e_prefix_determine(char *argv0)
snprintf(buf, sizeof(buf), "%s/"LOCALE_D, getenv("E_LOCALE_DIR"));
else
snprintf(buf, sizeof(buf), "%s/"LOCALE_D, _prefix_path);
- _prefix_path_data = strdup(buf);
+ _prefix_path_locale = strdup(buf);
return 1;
}
/* no env var - examine process and possible argv0 */