diff options
author | Tiago Ilieve <tiago.myhro@gmail.com> | 2018-10-27 12:47:07 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2018-11-15 15:44:54 +0000 |
commit | 8b3c1a2c7fc39d4591aea5d13f7f464847d22eef (patch) | |
tree | 3fa6d062f85423a2939919dd834d41e285e84080 /testing/kubernetes/build-with-debug-info.patch | |
parent | 16205d1fc108312aa7ca3ea0b5be61c36bda4418 (diff) | |
download | aports-8b3c1a2c7fc39d4591aea5d13f7f464847d22eef.tar.bz2 aports-8b3c1a2c7fc39d4591aea5d13f7f464847d22eef.tar.xz |
testing/kubernetes: remove obsolete patches
Diffstat (limited to 'testing/kubernetes/build-with-debug-info.patch')
-rw-r--r-- | testing/kubernetes/build-with-debug-info.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/testing/kubernetes/build-with-debug-info.patch b/testing/kubernetes/build-with-debug-info.patch deleted file mode 100644 index 866c640fd6..0000000000 --- a/testing/kubernetes/build-with-debug-info.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 7e07ff7120f2c5ed1030ed603f9bd2714c709ed6 Mon Sep 17 00:00:00 2001 -From: Jan Chaloupka <jchaloup@redhat.com> -Date: Mon, 31 Oct 2016 09:02:37 +0100 -Subject: [PATCH] build with debug info - ---- - hack/lib/golang.sh | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/hack/lib/golang.sh b/hack/lib/golang.sh -index ccd6c0a..c29bf85 100755 ---- a/hack/lib/golang.sh -+++ b/hack/lib/golang.sh -@@ -484,7 +484,7 @@ kube::golang::build_binaries_for_platform() { - CGO_ENABLED=0 go build -o "${outfile}" \ - "${goflags[@]:+${goflags[@]}}" \ - -gcflags "${gogcflags}" \ -- -ldflags "${goldflags}" \ -+ -ldflags "-B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \n') ${goldflags}" \ - "${binary}" - kube::log::progress "*" - done -@@ -493,7 +493,7 @@ kube::golang::build_binaries_for_platform() { - go build -o "${outfile}" \ - "${goflags[@]:+${goflags[@]}}" \ - -gcflags "${gogcflags}" \ -- -ldflags "${goldflags}" \ -+ -ldflags "-B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \n') ${goldflags}" \ - "${binary}" - kube::log::progress "*" - done --- -1.9.3 - |