diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2023-04-17 22:04:08 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2023-04-17 22:04:08 +0200 |
| commit | af4d4c6a4b94615e254b0730c86b6dc1b0bda69d (patch) | |
| tree | 607fe9871179c34f7142abf26f601e8857d7ff81 | |
| parent | 95bc638144917477094e03f126024b27e3e9131c (diff) | |
meson: Forgot to suffix sysconfgdir and localstatedir with /stuff
| -rw-r--r-- | meson.build | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 846e0c5..c7e2068 100644 --- a/meson.build +++ b/meson.build @@ -36,9 +36,11 @@ fastcgi_dep = dependency('fcgi', version: '>= 2.4.2', required: false) conf_data.set10('HAVE_FASTCGI', fastcgipp_dep.found() and fastcgi_dep.found()) conf_data.set_quoted('SYSCONFDIR', join_paths(get_option('prefix'), - get_option('sysconfdir'))) + get_option('sysconfdir'), + 'stuff')) conf_data.set_quoted('LOCALSTATEDIR', join_paths(get_option('prefix'), - get_option('localstatedir'))) + get_option('localstatedir'), + 'stuff')) configure_file(output: 'config.h', configuration: conf_data) |
