chiark / gitweb /
path-lookup: don't hardcode .config
authorTanu Kaskinen <tanu.kaskinen@linux.intel.com>
Sat, 3 May 2014 08:52:13 +0000 (11:52 +0300)
committerLennart Poettering <lennart@poettering.net>
Fri, 16 May 2014 16:47:36 +0000 (18:47 +0200)
If XDG_CONFIG_HOME is set, then we should respect that.

src/shared/path-lookup.c

index c6b4ba1e22bff59117b7ad90723ab4108ef76226..e072fd60928dfa1e2a493e87e15eaf7e0db6cbd0 100644 (file)
@@ -125,6 +125,8 @@ static char** user_dirs(
                         goto fail;
 
         } else if (home) {
                         goto fail;
 
         } else if (home) {
+                _cleanup_free_ char *data_home_parent = NULL;
+
                 if (asprintf(&data_home, "%s/.local/share/systemd/user", home) < 0)
                         goto fail;
 
                 if (asprintf(&data_home, "%s/.local/share/systemd/user", home) < 0)
                         goto fail;
 
@@ -135,8 +137,14 @@ static char** user_dirs(
                  * then filter out this link, if it is actually is
                  * one. */
 
                  * then filter out this link, if it is actually is
                  * one. */
 
-                mkdir_parents_label(data_home, 0777);
-                (void) symlink("../../../.config/systemd/user", data_home);
+                if (path_get_parent(data_home, &data_home_parent) >= 0) {
+                        _cleanup_free_ char *config_home_relative = NULL;
+
+                        if (path_make_relative(data_home_parent, config_home, &config_home_relative) >= 0) {
+                                mkdir_parents_label(data_home, 0777);
+                                (void) symlink(config_home_relative, data_home);
+                        }
+                }
         }
 
         e = getenv("XDG_DATA_DIRS");
         }
 
         e = getenv("XDG_DATA_DIRS");