From 1467a70b44d61aa5ac4cfe4f499192355abf6d58 Mon Sep 17 00:00:00 2001 From: Rolf Neugebauer Date: Sat, 27 Oct 2018 12:37:51 +0100 Subject: [PATCH] kernel: Compile bcc for 4.19 instead of 4.18 (x86_64 only) Signed-off-by: Rolf Neugebauer --- kernel/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/Makefile b/kernel/Makefile index 3853ede09..daec2e486 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -194,9 +194,9 @@ forcepush: forcepush_perf_$(2)$(3)$(4) endif # For BCC, only build on x86 and only on latest LTS and latest stable. -# That's 4.14.x and 4.18.x at time of authorship. +# That's 4.14.x and 4.19.x at time of authorship. ifeq ($(ARCH),x86_64) -ifeq ($(2), $(filter $(2),4.14.x 4.18.x)) +ifeq ($(2), $(filter $(2),4.14.x 4.19.x)) build_bcc_$(2)$(3)$(4): build_$(2)$(3)$(4) docker pull $(ORG)/$(IMAGE_BCC):$(1)$(3)$(4)-$(TAG)$(SUFFIX) || \ DOCKER_CONTENT_TRUST=0 docker build -f Dockerfile.bcc \