diff options
author | Janneke Nieuwenhuizen <[email protected]> | 2024-01-27 13:51:40 +0100 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2024-08-31 10:44:47 +0200 |
commit | 96e2eeee7492f2fac0ce057776253e117c102c8f (patch) | |
tree | 5ebbacc85c291e58f2bbb6d00d8f3d337ccd572f /gnu/packages/patches/hurd-fix-rumpdisk-build.patch | |
parent | 30cacb63f8d01ca667a2d66eb9734c11db26a80c (diff) |
gnu: hurd: Update to v0.9.git20231217.
* gnu/packages/hurd.scm (hurd-headers): Update to v0.9.git20231217.
[arguments]: Avoid new link test for file_utimens.
* (hurd)[source]: Remove hurd-fix-rumpdisk-build.patch, which has been
included upstream.
* gnu/packages/patches/hurd-add-without-rump-configure-option.patch,
gnu/packages/patches/hurd-fix-rumpdisk-build.patch,
gnu/packages/patches/hurd-fix-types-of-read-write-and-readables-methods.patch,
gnu/packages/patches/hurd-fix-types-of-read-write-and-readables-methods-2.patch:
Remove.
* gnu/local.mk (dist_patch_DATA): Unregister them.
Change-Id: I0b42db19289e2fefeae99b18f0c29a21d3bf67a4
Diffstat (limited to 'gnu/packages/patches/hurd-fix-rumpdisk-build.patch')
-rw-r--r-- | gnu/packages/patches/hurd-fix-rumpdisk-build.patch | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/gnu/packages/patches/hurd-fix-rumpdisk-build.patch b/gnu/packages/patches/hurd-fix-rumpdisk-build.patch deleted file mode 100644 index 4ecd5ed0ee..0000000000 --- a/gnu/packages/patches/hurd-fix-rumpdisk-build.patch +++ /dev/null @@ -1,41 +0,0 @@ -Upstream status: taken from upstream. - -From a2b0f721d077fdc5c9decb21b975b58fb51a3e8f Mon Sep 17 00:00:00 2001 -From: Janneke Nieuwenhuizen <[email protected]> -Date: Mon, 22 May 2023 19:21:47 +0200 -Subject: [PATCH] rumpdisk: Do not assume FHS /usr/lib, fixes Guix cross-build. - ---- - rumpdisk/Makefile | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -diff --git a/rumpdisk/Makefile b/rumpdisk/Makefile -index 60a209b3..b59aaf9a 100644 ---- a/rumpdisk/Makefile -+++ b/rumpdisk/Makefile -@@ -1,5 +1,5 @@ - # --# Copyright (C) 2019 Free Software Foundation, Inc. -+# Copyright (C) 2019, 2023 Free Software Foundation, Inc. - # - # This program is free software; you can redistribute it and/or - # modify it under the terms of the GNU General Public License as -@@ -15,7 +15,6 @@ - # along with this program; if not, write to the Free Software - # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - --RUMPPATH=/usr/lib - RUMPLIBS=rump rumpuser rumpdev rumpdev_disk rumpdev_pci rumpvfs rumpdev_ahcisata rumpdev_piixide rumpdev_ata - RUMPEXTRA=rumpdev_scsipi - -@@ -38,6 +37,6 @@ target = rumpdisk - OBJS = $(SRCS:.c=.o) - HURDLIBS = machdev ports trivfs shouldbeinlibc iohelp ihash fshelp - LDLIBS += -lpthread -lpciaccess -ldl --LDLIBS += -Wl,--whole-archive $(RUMPLIBS:%=$(RUMPPATH)/lib%_pic.a) -Wl,--no-whole-archive $(RUMPEXTRA:%=$(RUMPPATH)/lib%_pic.a) -+LDLIBS += -Wl,--whole-archive $(RUMPLIBS:%=-l%_pic) -Wl,--no-whole-archive $(RUMPEXTRA:%=-l%_pic) - - include ../Makeconf --- -2.40.1 - |