Revert "Meson: Replace option instlibdir with libexecdir"

This reverts commit 830c4ef74c.
This commit is contained in:
Rostislav Pehlivanov 2018-05-06 00:19:43 +01:00
parent cf602687c6
commit 0cdc47ab1e
5 changed files with 9 additions and 9 deletions

View file

@ -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 = ":" SWAY_LIBEXECDIR;
const size_t extra_size = sizeof(SWAY_LIBEXECDIR) + 1;
const char *extra_path = ":" INSTLIBDIR;
const size_t extra_size = sizeof(INSTLIBDIR) + 1;
if (!path) {
size_t n = confstr(_CS_PATH, NULL, 0);