aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2018-10-16 19:35:06 +0200
committerFurkan Sahin <furkan-dev@proton.me>2018-10-16 19:35:06 +0200
commit88e8661a08edd087ee8bb523e66d8c17b35b7619 (patch)
tree34afa82d23bb5e342762febc7bc8d279765c3938 /meson.build
parentce6f09795adc15dff7f4d33c6e99d128be200700 (diff)
Revert "Fix SYSCONFDIR to include "prefix""
This reverts commit f0d30b0370d47d7fb08770b28c801f7379bd7466. SYSCONFDIR should be "/etc" even when prefix="/usr" to be FHS compliant. This is the default in meson from v0.44.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 31c3e53e..4fab12d9 100644
--- a/meson.build
+++ b/meson.build
@@ -114,7 +114,7 @@ if scdoc.found()
endforeach
endif
-add_project_arguments('-DSYSCONFDIR="/@0@/@1@"'.format(prefix, sysconfdir), language : 'c')
+add_project_arguments('-DSYSCONFDIR="/@0@"'.format(sysconfdir), language : 'c')
version = get_option('sway-version')
if version != ''