chiark / gitweb /
path-util: add path_make_relative()
authorTanu Kaskinen <tanu.kaskinen@linux.intel.com>
Sat, 3 May 2014 08:52:12 +0000 (11:52 +0300)
committerLennart Poettering <lennart@poettering.net>
Fri, 16 May 2014 16:47:34 +0000 (18:47 +0200)
In user_dirs() in path-lookup.c, I want to replace this:
        symlink("../../../.config/systemd/user", data_home);
with
        symlink(config_home, data_home);
to avoid hardcoding .config when XDG_CONFIG_HOME is set.

The problem is that config_home is an absolute path, and it's better
to make the symlink relative. path_make_relative() is an utility
function that converts an absolute path into a relative one.


No differences found