sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 027928bdebad4b2d79b7e89270c0a0c7e6bfe999
parent 615d4bf958c4d5075b041dc8b3b9ae449f55828f
Author: Niccolò Scatena <speedjack95@gmail.com>
Date:   Tue, 16 Oct 2018 19:44:45 +0200

Set SYSCONFDIR to /etc even when "prefix" is set

SYSCONFDIR should be "/etc" even when prefix="/usr" to be FHS compliant.
This is the default in meson from v0.44.

Diffstat:
Mmeson.build | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meson.build b/meson.build @@ -157,7 +157,7 @@ subdir('swaynag') subdir('swaylock') config = configuration_data() -config.set('sysconfdir', join_paths(prefix, sysconfdir)) +config.set('sysconfdir', sysconfdir) config.set('datadir', join_paths(prefix, datadir)) config.set('prefix', prefix)