Fill in more details in DEP metadata for patch files
This commit is contained in:
parent
7546730257
commit
c2bef2309a
|
|
@ -1,11 +1,17 @@
|
||||||
Description: Move libwlroots to private directory
|
Description: Move libwlroots to private directory
|
||||||
Hyprland builds a custom version of wlroots that is based
|
Hyprland builds a custom version of wlroots that is based
|
||||||
on the latter's latest commit. This library is placed under
|
on the latter's latest commit. This library is placed under
|
||||||
/usr/lib/ which pollutes the shared library space. We will
|
/usr/lib/ which pollutes the shared library space. We will,
|
||||||
instead, install the library to the 'hyprland' directory
|
instead, install the library to the 'hyprland' directory
|
||||||
under /usr/lib/.
|
under /usr/lib/. This patch is intended to follow the Debian
|
||||||
|
policies and recommendations as closely as possible while
|
||||||
|
following Hyprland's requirements to use a specific commit
|
||||||
|
for wlroots. See discussion below:
|
||||||
|
https://github.com/hyprwm/Hyprland/issues/648
|
||||||
|
https://github.com/hyprwm/Hyprland/issues/302
|
||||||
Author: Alan M Varghese <alan@digistorm.in>
|
Author: Alan M Varghese <alan@digistorm.in>
|
||||||
Last-Update: 2024-02-02
|
Last-Update: 2024-03-01
|
||||||
|
Forwarded: not-needed
|
||||||
--- a/Makefile
|
--- a/Makefile
|
||||||
+++ b/Makefile
|
+++ b/Makefile
|
||||||
@@ -52,8 +52,8 @@
|
@@ -52,8 +52,8 @@
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,11 @@
|
||||||
|
Description: Ensure make uses bash as its shell
|
||||||
|
The upstream Makefile contains several bash constructs (like '[['). These
|
||||||
|
fail on debian because the default shell for make is /bin/sh which points to
|
||||||
|
dash. And dash does not support such constructs. So have make use /bin/bash
|
||||||
|
as its shell.
|
||||||
|
Author: Alan M Varghese
|
||||||
|
Last-Update: 2024-03-01
|
||||||
|
Forwarded: not-needed
|
||||||
--- a/Makefile
|
--- a/Makefile
|
||||||
+++ b/Makefile
|
+++ b/Makefile
|
||||||
@@ -1,4 +1,5 @@
|
@@ -1,4 +1,5 @@
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue