diff options
Diffstat (limited to 'recipes-containers/docker/docker-moby/0001-cli-use-go-cross-compiler.patch')
-rw-r--r-- | recipes-containers/docker/docker-moby/0001-cli-use-go-cross-compiler.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/recipes-containers/docker/docker-moby/0001-cli-use-go-cross-compiler.patch b/recipes-containers/docker/docker-moby/0001-cli-use-go-cross-compiler.patch deleted file mode 100644 index f065e184..00000000 --- a/recipes-containers/docker/docker-moby/0001-cli-use-go-cross-compiler.patch +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | From ae6f4a1e685394fb7b9539f134b66ca84ddc91c2 Mon Sep 17 00:00:00 2001 | ||
2 | From: Bruce Ashfield <bruce.ashfield@gmail.com> | ||
3 | Date: Tue, 30 Jun 2020 22:19:56 -0400 | ||
4 | Subject: [PATCH] cli: use go cross compiler | ||
5 | |||
6 | Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> | ||
7 | --- | ||
8 | git/cli/scripts/build/dynbinary | 2 +- | ||
9 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
10 | |||
11 | Index: git/cli/scripts/build/dynbinary | ||
12 | =================================================================== | ||
13 | --- git.orig/cli/scripts/build/dynbinary | ||
14 | +++ git/cli/scripts/build/dynbinary | ||
15 | @@ -19,6 +19,6 @@ | ||
16 | ;; | ||
17 | esac | ||
18 | |||
19 | -go build -o "${TARGET}" -tags pkcs11 --ldflags "${LDFLAGS}" ${GO_BUILDMODE} "${SOURCE}" | ||
20 | +${GO} build -o "${TARGET}" -tags pkcs11 --ldflags "${LDFLAGS}" ${GO_BUILDMODE} "${SOURCE}" | ||
21 | |||
22 | ln -sf "$(basename "${TARGET}")" build/docker | ||