aboutsummaryrefslogtreecommitdiff
path: root/sway/commands
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands')
-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) {
if ((*child = fork()) == 0) {
// Acquire the current PATH
char *path = getenv("PATH");
- const char *extra_path = ":" INSTLIBDIR;
- const size_t extra_size = sizeof(INSTLIBDIR) + 1;
+ const char *extra_path = ":" SWAY_LIBEXECDIR;
+ const size_t extra_size = sizeof(SWAY_LIBEXECDIR) + 1;
if (!path) {
size_t n = confstr(_CS_PATH, NULL, 0);