aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/exec_always.c
diff options
context:
space:
mode:
authorLibravatar Nicolas Braud-Santoni <nicolas@braud-santoni.eu>2018-05-01 20:47:55 +0200
committerLibravatar Nicolas Braud-Santoni <nicolas@braud-santoni.eu>2018-05-05 17:22:46 +0200
commit830c4ef74c00dbe448da46cdbc576178abc5728e (patch)
treea0df4539f56d185a07d0a03a9c358ba775204c78 /sway/commands/exec_always.c
parentMake the LIBDIR path configurable (diff)
downloadsway-830c4ef74c00dbe448da46cdbc576178abc5728e.tar.gz
sway-830c4ef74c00dbe448da46cdbc576178abc5728e.tar.zst
sway-830c4ef74c00dbe448da46cdbc576178abc5728e.zip
Meson: Replace option `instlibdir` with `libexecdir`
Derive a value from it, called `rundir` rather than writing join_paths(libexecdir, 'sway') all over the place.
Diffstat (limited to 'sway/commands/exec_always.c')
-rw-r--r--sway/commands/exec_always.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/commands/exec_always.c b/sway/commands/exec_always.c
index 3f3a7940..aaee940b 100644
--- a/sway/commands/exec_always.c
+++ b/sway/commands/exec_always.c
@@ -55,8 +55,8 @@ struct cmd_results *cmd_exec_always(int argc, char **argv) {
55 if ((*child = fork()) == 0) { 55 if ((*child = fork()) == 0) {
56 // Acquire the current PATH 56 // Acquire the current PATH
57 char *path = getenv("PATH"); 57 char *path = getenv("PATH");
58 const char *extra_path = ":" INSTLIBDIR; 58 const char *extra_path = ":" SWAY_LIBEXECDIR;
59 const size_t extra_size = sizeof(INSTLIBDIR) + 1; 59 const size_t extra_size = sizeof(SWAY_LIBEXECDIR) + 1;
60 60
61 if (!path) { 61 if (!path) {
62 size_t n = confstr(_CS_PATH, NULL, 0); 62 size_t n = confstr(_CS_PATH, NULL, 0);