summaryrefslogtreecommitdiffstats
path: root/recipes-containers/cri-o/files/0001-Makefile-force-symlinks.patch
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2017-09-29 08:57:44 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2017-10-02 09:15:42 -0400
commit0ff8923f08ae9f7a0e8ec71e4d5a7edb1d027b43 (patch)
tree270fe64ca18412a27ca297a3a527c65426141a32 /recipes-containers/cri-o/files/0001-Makefile-force-symlinks.patch
parent6c3a6c31cc477dae7524f21b147783c0bd1c0a93 (diff)
downloadmeta-virtualization-0ff8923f08ae9f7a0e8ec71e4d5a7edb1d027b43.tar.gz
containers: cri-o: kubernetes runc backend
To prepare for native kubernetes support without docker on a target, we integrate the cri-o incubator project. cri-o is meant to provide an integration path between OCI conformant runtimes and the kubelet. Specifically, it implements the Kubelet Container Runtime Interface (CRI) using OCI conformant runtimes. The scope of cri-o is tied to the scope of the CRI. This initial introduction is build + packaging only. It is expected that configuration and deployment tweaks are done at the distro level. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-containers/cri-o/files/0001-Makefile-force-symlinks.patch')
-rw-r--r--recipes-containers/cri-o/files/0001-Makefile-force-symlinks.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/recipes-containers/cri-o/files/0001-Makefile-force-symlinks.patch b/recipes-containers/cri-o/files/0001-Makefile-force-symlinks.patch
new file mode 100644
index 00000000..320eac86
--- /dev/null
+++ b/recipes-containers/cri-o/files/0001-Makefile-force-symlinks.patch
@@ -0,0 +1,26 @@
1From a4433978bf324525b4c260b0e9615ae27271fe55 Mon Sep 17 00:00:00 2001
2From: Bruce Ashfield <bruce.ashfield@windriver.com>
3Date: Wed, 20 Sep 2017 12:05:40 -0400
4Subject: [PATCH] Makefile: force symlinks
5
6Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
7---
8 Makefile | 2 +-
9 1 file changed, 1 insertion(+), 1 deletion(-)
10
11diff --git a/src/import/Makefile b/src/import/Makefile
12index e3e5050bb7f6..4ad3fb7ff0a9 100644
13--- a/src/import/Makefile
14+++ b/src/import/Makefile
15@@ -53,7 +53,7 @@ help:
16 .gopathok:
17 ifeq ("$(wildcard $(GOPKGDIR))","")
18 mkdir -p "$(GOPKGBASEDIR)"
19- ln -s "$(CURDIR)" "$(GOPKGBASEDIR)"
20+ ln -sf "$(CURDIR)" "$(GOPKGBASEDIR)"
21 endif
22 touch "$(GOPATH)/.gopathok"
23
24--
252.4.0.53.g8440f74
26