use g_getenv
This commit is contained in:
parent
16dc1c48c8
commit
e5c7e635bc
1 changed files with 4 additions and 4 deletions
|
@ -302,21 +302,21 @@ void parse_paths_startup()
|
||||||
return;
|
return;
|
||||||
xdg_start = TRUE;
|
xdg_start = TRUE;
|
||||||
|
|
||||||
path = getenv("XDG_CONFIG_HOME");
|
path = g_getenv("XDG_CONFIG_HOME");
|
||||||
if (path && path[0] != '\0') /* not unset or empty */
|
if (path && path[0] != '\0') /* not unset or empty */
|
||||||
xdg_config_home_path = g_build_filename(path, NULL);
|
xdg_config_home_path = g_build_filename(path, NULL);
|
||||||
else
|
else
|
||||||
xdg_config_home_path = g_build_filename(g_get_home_dir(), ".config",
|
xdg_config_home_path = g_build_filename(g_get_home_dir(), ".config",
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
path = getenv("XDG_DATA_HOME");
|
path = g_getenv("XDG_DATA_HOME");
|
||||||
if (path && path[0] != '\0') /* not unset or empty */
|
if (path && path[0] != '\0') /* not unset or empty */
|
||||||
xdg_data_home_path = g_build_filename(path, NULL);
|
xdg_data_home_path = g_build_filename(path, NULL);
|
||||||
else
|
else
|
||||||
xdg_data_home_path = g_build_filename(g_get_home_dir(), ".local",
|
xdg_data_home_path = g_build_filename(g_get_home_dir(), ".local",
|
||||||
"share", NULL);
|
"share", NULL);
|
||||||
|
|
||||||
path = getenv("XDG_CONFIG_DIRS");
|
path = g_getenv("XDG_CONFIG_DIRS");
|
||||||
if (path && path[0] != '\0') /* not unset or empty */
|
if (path && path[0] != '\0') /* not unset or empty */
|
||||||
xdg_config_dir_paths = split_paths(path);
|
xdg_config_dir_paths = split_paths(path);
|
||||||
else {
|
else {
|
||||||
|
@ -333,7 +333,7 @@ void parse_paths_startup()
|
||||||
xdg_config_home_path,
|
xdg_config_home_path,
|
||||||
(GSListFunc) g_slist_prepend);
|
(GSListFunc) g_slist_prepend);
|
||||||
|
|
||||||
path = getenv("XDG_DATA_DIRS");
|
path = g_getenv("XDG_DATA_DIRS");
|
||||||
if (path && path[0] != '\0') /* not unset or empty */
|
if (path && path[0] != '\0') /* not unset or empty */
|
||||||
xdg_data_dir_paths = split_paths(path);
|
xdg_data_dir_paths = split_paths(path);
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in a new issue