diff options
author | Vaxry <[email protected]> | 2024-05-13 15:16:10 +0100 |
---|---|---|
committer | Vaxry <[email protected]> | 2024-05-13 15:16:10 +0100 |
commit | 60be4298e13b02913f241dd79fe7517f185299d0 (patch) | |
tree | da0f84794f8b9cc3d792d2847f4024ebf01a1d61 | |
parent | 4c625ce6734be79bf0ddd8dda80a161994b19892 (diff) | |
download | Hyprland-60be4298e13b02913f241dd79fe7517f185299d0.tar.gz Hyprland-60be4298e13b02913f241dd79fe7517f185299d0.zip |
makefile: fix wlroots headers dir
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -54,7 +54,7 @@ installheaders: mkdir -p ${PREFIX}/share/pkgconfig find src -name '*.h*' -print0 | cpio --quiet -0dump ${PREFIX}/include/hyprland - cd subprojects/wlroots-hyprland/include && find . -name '*.h*' -print0 | cpio --quiet -0dump ${PREFIX}/include/hyprland/wlr && cd ../../.. + cd subprojects/wlroots-hyprland/include/wlr && find . -name '*.h*' -print0 | cpio --quiet -0dump ${PREFIX}/include/hyprland/wlr && cd ../../../.. cd subprojects/wlroots-hyprland/build/include && find . -name '*.h*' -print0 | cpio --quiet -0dump ${PREFIX}/include/hyprland/wlr && cd ../../../.. cp ./protocols/*.h* ${PREFIX}/include/hyprland/protocols cp ./build/hyprland.pc ${PREFIX}/share/pkgconfig |