diff options
author | Nicolas Braud-Santoni <nicolas@braud-santoni.eu> | 2018-05-01 20:47:55 +0200 |
---|---|---|
committer | Nicolas Braud-Santoni <nicolas@braud-santoni.eu> | 2018-05-05 17:22:46 +0200 |
commit | 4f9b60d194563b0f715363948ce5c8602a071f52 (patch) | |
tree | 8120766cd54e57a7afabbed4c4e20c0312a3233c | |
parent | 5b936cb1f86ff3e091d8183d8a1b0e0eb61928f8 (diff) | |
download | swaybg-4f9b60d194563b0f715363948ce5c8602a071f52.tar.gz swaybg-4f9b60d194563b0f715363948ce5c8602a071f52.tar.bz2 |
Meson: Replace option `instlibdir` with `libexecdir`
Derive a value from it, called `rundir` rather than writing join_paths(libexecdir,
'sway') all over the place.
Diffstat (limited to '')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index e994da8..716178d 100644 --- a/meson.build +++ b/meson.build @@ -15,5 +15,5 @@ executable( ], link_with: [lib_sway_common, lib_sway_client], install: true, - install_dir: instlibdir + install_dir: sway_libexecdir ) |