summaryrefslogtreecommitdiff
path: root/gnu/packages/patches/sudo-missing-sudo_pt_regs-aarch64.patch
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2022-06-05 02:00:00 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2022-06-05 02:00:09 +0200
commitce21522706ce9603eab0da9eb568ceda9c19cd1a (patch)
treee9fa5a340bbc63c394189d4545da8c14897806cd /gnu/packages/patches/sudo-missing-sudo_pt_regs-aarch64.patch
parent7fe382892af614940f70a0ac57ed5976ff4e3da6 (diff)
downloadguix-patches-ce21522706ce9603eab0da9eb568ceda9c19cd1a.tar
guix-patches-ce21522706ce9603eab0da9eb568ceda9c19cd1a.tar.gz
* gnu/packages/admin.scm (sudo): Update to 1.9.11p1. [source]: Remove patch again. * gnu/packages/patches/sudo-missing-sudo_pt_regs-aarch64.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Remove it.
Diffstat (limited to 'gnu/packages/patches/sudo-missing-sudo_pt_regs-aarch64.patch')
-rw-r--r--gnu/packages/patches/sudo-missing-sudo_pt_regs-aarch64.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/gnu/packages/patches/sudo-missing-sudo_pt_regs-aarch64.patch b/gnu/packages/patches/sudo-missing-sudo_pt_regs-aarch64.patch
deleted file mode 100644
index 9caf607940..0000000000
--- a/gnu/packages/patches/sudo-missing-sudo_pt_regs-aarch64.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From d549adf04bfde7936306203e2e8886ffd93d00ea Mon Sep 17 00:00:00 2001
-From: Pierre Bourdon <delroth@gmail.com>
-Date: Tue, 7 Jun 2022 17:14:39 +0200
-Subject: [PATCH] exec_ptrace: fix missing sudo_pt_regs on aarch64
-
-AArch64 already had an existing "user_pt_regs" struct and didn't need a
-struct alias before the renaming to "sudo_pt_regs". Make the code build
-again by adding the now missing alias.
-
-Fixes: 2eb8ff17
----
- src/exec_ptrace.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/exec_ptrace.h b/src/exec_ptrace.h
-index 7f26283a8..4a5a86581 100644
---- a/src/exec_ptrace.h
-+++ b/src/exec_ptrace.h
-@@ -76,6 +76,7 @@
- # define reg_arg4(x) (x).r10
- #elif defined(__aarch64__)
- # define SECCOMP_AUDIT_ARCH AUDIT_ARCH_AARCH64
-+# define sudo_pt_regs struct user_pt_regs
- # define reg_syscall(x) (x).regs[8] /* w8 */
- # define reg_retval(x) (x).regs[0] /* x0 */
- # define reg_sp(x) (x).sp /* sp */