From 6e14ff1f47ddb0d0669b2c6e05a72a499f5cc3c1 Mon Sep 17 00:00:00 2001 From: Christoph Ostarek Date: Tue, 4 Jun 2024 19:39:07 +0200 Subject: [PATCH] Dockerfile.clang: fix spelling errors Signed-off-by: Christoph Ostarek --- Dockerfile.clang | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile.clang b/Dockerfile.clang index 08774c110d389..9e5b5ce8f0328 100644 --- a/Dockerfile.clang +++ b/Dockerfile.clang @@ -111,7 +111,7 @@ RUN --mount=type=bind,target=/kernel-src,readwrite \ --host=${ZFS_CROSS_HOST} \ --build=${BUILDARCH}-${BUILDOS}-musl \ KERNEL_LLVM=1 \ - # we cannot set "ccashe clang" cecause autoconf scripts do not properly escape + # we cannot set "ccache clang" because autoconf scripts do not properly escape # spaces in CC variable. But it should be ok for ./configure KERNEL_CC="clang" \ KERNEL_LD="ld.lld" && \ @@ -122,8 +122,8 @@ FROM zfs-config as zfs-build RUN --mount=type=bind,target=/kernel-src,readwrite \ --mount=type=cache,target=/root/.cache/ccache \ --mount=type=cache,target=/tmp/zfs/build \ - # here we can use ccashe again - make -C module CC="ccashe clang" -j$(nproc) && \ + # here we can use ccache again + make -C module CC="ccache clang" -j$(nproc) && \ make -C module INSTALL_MOD_STRIP=1 INSTALL_MOD_PATH=/tmp/kernel-modules install && \ ccache -s