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)
commit7cb9c51ce81818c200f27de4db4a4076cbe4265b
treee7f350750c6cda8e02ae585629214d150afaf39c
parentf1f0198cb61a3398557cc9ec596e1e90ac731ed3
path-util: add path_make_relative()

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.
src/shared/path-util.c
src/shared/path-util.h