[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#52790] [PATCH v3 2/7] gnu: containerd: Fix patch-paths build phase.
From: |
Pierre Langlois |
Subject: |
[bug#52790] [PATCH v3 2/7] gnu: containerd: Fix patch-paths build phase. |
Date: |
Tue, 10 May 2022 00:35:14 +0100 |
* gnu/packages/docker.scm (containerd)[arguments]: Add 'patch-paths
phases after 'unpack because 'chdir doesn't exist.
---
gnu/packages/docker.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/docker.scm b/gnu/packages/docker.scm
index 07731886ae..5c0f4d496d 100644
--- a/gnu/packages/docker.scm
+++ b/gnu/packages/docker.scm
@@ -7,6 +7,7 @@
;;; Copyright © 2020 Katherine Cox-Buday <cox.katherine.e@gmail.com>
;;; Copyright © 2020 Jesse Dowell <jessedowell@gmail.com>
;;; Copyright © 2021 Oleg Pykhalov <go.wigust@gmail.com>
+;;; Copyright © 2022 Pierre Langlois <pierre.langlois@gmx.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -190,7 +191,7 @@ (define-public containerd
`(#:import-path "github.com/containerd/containerd"
#:phases
(modify-phases %standard-phases
- (add-after 'chdir 'patch-paths
+ (add-after 'unpack 'patch-paths
(lambda* (#:key inputs import-path outputs #:allow-other-keys)
(with-directory-excursion (string-append "src/" import-path)
(substitute* "runtime/v1/linux/runtime.go"
--
2.36.0
- [bug#52790] [PATCH v3 0/7] Update docker to 20.10.15., Pierre Langlois, 2022/05/09
- [bug#52790] [PATCH v3 1/7] gnu: runc: Update to 1.1.1., Pierre Langlois, 2022/05/09
- [bug#52790] [PATCH v3 2/7] gnu: containerd: Fix patch-paths build phase.,
Pierre Langlois <=
- [bug#52790] [PATCH v3 4/7] gnu: containerd: Switch to gexp arguments., Pierre Langlois, 2022/05/09
- [bug#52790] [PATCH v3 3/7] gnu: containerd: Update to 1.6.4., Pierre Langlois, 2022/05/09
- [bug#52790] [PATCH v3 5/7] gnu: docker: Fix mkfs.xfs reference., Pierre Langlois, 2022/05/09
- [bug#52790] [PATCH v3 7/7] gnu: docker: Switch to gexp and new input style., Pierre Langlois, 2022/05/09
- [bug#52790] [PATCH v3 6/7] gnu: docker: Update to 20.10.15., Pierre Langlois, 2022/05/09