diff options
author | vaxerski <[email protected]> | 2023-10-10 19:59:42 +0100 |
---|---|---|
committer | vaxerski <[email protected]> | 2023-10-10 19:59:42 +0100 |
commit | bf94df7b00eefe67780c2049a3f8f6e034b3c73e (patch) | |
tree | 960df58f759f3a17606d7c9d7bcddb93ed3ab025 /Makefile | |
parent | d537815d43c74a4e9214c4e7480c20047d297307 (diff) | |
download | Hyprland-bf94df7b00eefe67780c2049a3f8f6e034b3c73e.tar.gz Hyprland-bf94df7b00eefe67780c2049a3f8f6e034b3c73e.zip |
makefile: set correct perms on includes
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -72,6 +72,9 @@ install: cp ./assets/hyprland-portals.conf ${PREFIX}/share/xdg-desktop-portal/ if [ -d /usr/share/pkgconfig ]; then cp ./build/hyprland.pc /usr/share/pkgconfig 2>/dev/null || true; fi + chmod -R 755 ${PREFIX}/include/hyprland + chmod 755 ${PREFIX}/share/pkgconfig + cleaninstall: echo -en "$(MAKE) cleaninstall has been DEPRECATED, you should avoid using it in the future.\nRunning $(MAKE) install instead...\n" $(MAKE) install @@ -126,6 +129,9 @@ pluginenv: cp ./build/hyprland.pc ${PREFIX}/share/pkgconfig if [ -d /usr/share/pkgconfig ]; then cp ./build/hyprland.pc /usr/share/pkgconfig 2>/dev/null || true; fi + chmod -R 755 ${PREFIX}/include/hyprland + chmod 755 ${PREFIX}/share/pkgconfig + configdebug: $(MAKE) fixwlr |