mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-09 22:45:58 +01:00
Fix Makefile too
... did this ever work?
This commit is contained in:
parent
c5786be695
commit
8162fae377
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -87,8 +87,8 @@ asan:
|
||||||
#git reset --hard
|
#git reset --hard
|
||||||
|
|
||||||
@echo -en "If you want to apply a patch, input its path (leave empty for none):\n"
|
@echo -en "If you want to apply a patch, input its path (leave empty for none):\n"
|
||||||
@read patchvar
|
@read patchvar; \
|
||||||
@if [-n "$patchvar"]; then patch -p1 < $patchvar || echo ""; else echo "No patch specified"; fi
|
if [ -n "$$patchvar" ]; then patch -p1 < "$$patchvar" || echo ""; else echo "No patch specified"; fi
|
||||||
|
|
||||||
git clone --recursive https://gitlab.freedesktop.org/wayland/wayland
|
git clone --recursive https://gitlab.freedesktop.org/wayland/wayland
|
||||||
cd wayland && patch -p1 < ../scripts/waylandStatic.diff && meson setup build --buildtype=debug -Db_sanitize=address -Ddocumentation=false && ninja -C build && cd ..
|
cd wayland && patch -p1 < ../scripts/waylandStatic.diff && meson setup build --buildtype=debug -Db_sanitize=address -Ddocumentation=false && ninja -C build && cd ..
|
||||||
|
|
Loading…
Reference in a new issue