From: Patrick McCarty Date: Wed, 12 Sep 2012 20:06:54 +0000 (-0700) Subject: Use /home for the datadir instead of /opt/home X-Git-Tag: accepted/tizen_2.1/20130425.024739~57^2~236^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=534f302648798623ec7b13ca6631a99597c3cf1e;p=platform%2Fcore%2Fuifw%2Fisf.git Use /home for the datadir instead of /opt/home SCIM pulls user home directories from /etc/passwd (through scim_get_home_dir() and the like), which lists /home/app for the app user. This directory is also used to construct the user data directory paths. Make sure the data dir path for user app is consistent by replacing the /opt/home/app datadir path with /home/app. Change-Id: I8ba4984ecc62d7948c7b2ac8111549d4d00447d7 --- diff --git a/ism/src/isf_query_utility.h b/ism/src/isf_query_utility.h index ecd64dc..66e38e0 100644 --- a/ism/src/isf_query_utility.h +++ b/ism/src/isf_query_utility.h @@ -32,7 +32,7 @@ using namespace scim; // Declaration of macro. ///////////////////////////////////////////////////////////////////////////// #define MAXLINE 4096 -#define USER_ENGINE_LIST_PATH "/opt/home/app/.scim" +#define USER_ENGINE_LIST_PATH "/home/app/.scim" #ifndef SCIM_SYSCONFDIR #define SCIM_SYSCONFDIR "/usr/etc" diff --git a/packaging/isf.changes b/packaging/isf.changes new file mode 100644 index 0000000..12fea9f --- /dev/null +++ b/packaging/isf.changes @@ -0,0 +1,3 @@ +* Wed Sep 12 2012 Patrick McCarty b965032 +- Use /home for the datadir instead of /opt/home +