From 615d4bf958c4d5075b041dc8b3b9ae449f55828f Mon Sep 17 00:00:00 2001 From: Niccolò Scatena Date: Tue, 16 Oct 2018 19:35:06 +0200 Subject: Revert "Fix SYSCONFDIR to include "prefix"" This reverts commit 6942f5b6845b2cc572ec378365771a34caf50ba1. SYSCONFDIR should be "/etc" even when prefix="/usr" to be FHS compliant. This is the default in meson from v0.44. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 != '' -- cgit v1.2.3-54-g00ecf From 027928bdebad4b2d79b7e89270c0a0c7e6bfe999 Mon Sep 17 00:00:00 2001 From: Niccolò Scatena Date: Tue, 16 Oct 2018 19:44:45 +0200 Subject: 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. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 4fab12d9..3fb1e81e 100644 --- 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) -- cgit v1.2.3-54-g00ecf