diff options
| author | Yelninei <yelninei@tutamail.com> | 2025-12-17 13:04:02 +0000 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2026-02-07 22:37:15 +0100 |
| commit | d1dc0c73aa1eb8bbe7918e3b50aa741febcbb4aa (patch) | |
| tree | 4cd3812af89a6f14e72bdbc71c2a0d808525c79e /gnu/packages/glib.scm | |
| parent | 232c55f84493ca06e7ad2d72ef6163b21e2de505 (diff) | |
gnu: dbus: Fix build on the Hurd.
* gnu/packages/patches/dbus-hurd-patch: New patch.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/glib.scm (dbus): Add phase for adding the patch.
Change-Id: Ifa3950b9db588b4102162672958541b49dac33a0
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu/packages/glib.scm')
| -rw-r--r-- | gnu/packages/glib.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index dcc550a8885..e0eb107e5a0 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -147,6 +147,13 @@ "--sysconfdir=/etc") #:phases #~(modify-phases %standard-phases + #$@(if (target-hurd?) + #~((add-after 'unpack 'patch-hurd + (lambda _ + (let ((patch #$(local-file + (search-patch "dbus-hurd.patch")))) + (invoke "patch" "--force" "-p1" "-i" patch))))) + #~()) (replace 'install (lambda _ ;; Don't try to create /var and /etc. |
