From d87820124e0c120fe9eda9c1639329182936a1ad Mon Sep 17 00:00:00 2001 From: Rolf Neugebauer Date: Thu, 3 May 2018 17:19:14 +0100 Subject: [PATCH] kernel: Fix comment on when the perf compile failed The version in the comment was accidentally bumped during the past kernel updates. Signed-off-by: Rolf Neugebauer --- kernel/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/Dockerfile b/kernel/Dockerfile index 449c2da67..2b885b936 100644 --- a/kernel/Dockerfile +++ b/kernel/Dockerfile @@ -171,7 +171,7 @@ RUN printf "KERNEL_SOURCE=${KERNEL_SOURCE}\n" > /out/kernel-source-info # perf # Skip for 4.4.x (the compile is broken and tedious to fix) and 4.9.x (the -# compile broke with 4.9.97) +# compile broke with 4.9.93) RUN if [ "${KERNEL_SERIES}" != "4.4.x" ] && [ "${KERNEL_SERIES}" != "4.9.x" ]; then \ mkdir -p /build/perf && \ make -C tools/perf LDFLAGS=-static O=/build/perf && \