[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#52790] [PATCH 1/4] gnu: containerd: Fix patch-paths build phase.
From: |
Pierre Langlois |
Subject: |
[bug#52790] [PATCH 1/4] gnu: containerd: Fix patch-paths build phase. |
Date: |
Sat, 25 Dec 2021 14:40:11 +0000 |
* gnu/packages/docker.scm (containerd)[arguments]: Add 'patch-paths
phases after 'unpack because 'chdir doesn't exist. Substitute runc
binary for "pkg/cri/config/config_unix.go".
---
gnu/packages/docker.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/docker.scm b/gnu/packages/docker.scm
index d012ed43c6..47e4fcd2dc 100644
--- a/gnu/packages/docker.scm
+++ b/gnu/packages/docker.scm
@@ -190,7 +190,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.34.0