From 45a21ca232fac20a63097a12b0626c050a5f93ad Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Thu, 28 Dec 2017 14:18:37 -0500 Subject: [PATCH] Install headers to /usr/include/wlr Rather than wlroots. I should have caught this. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index caa4b771..bacf6908 100644 --- a/meson.build +++ b/meson.build @@ -97,7 +97,7 @@ else exclude_headers += 'xwm.h' endif exclude_headers += 'meson.build' -header_install_dir = 'include/@0@'.format(meson.project_name()) +header_install_dir = 'include/@0@'.format('wlr') install_subdir('include/wlr', install_dir: header_install_dir, exclude_files: exclude_headers)