@@ -140,12 +140,12 @@ FROM nuttx-toolchain-base AS nuttx-toolchain-arm
140140# Download the latest ARM clang toolchain prebuilt by ARM
141141RUN mkdir -p clang-arm-none-eabi && \
142142 curl -s -L "https://github.com/ARM-software/LLVM-embedded-toolchain-for-Arm/releases/download/release-17.0.1/LLVMEmbeddedToolchainForArm-17.0.1-Linux-x86_64.tar.xz" \
143- | tar -C clang-arm-none-eabi --strip-components= 1 -xJ
143+ | tar -C clang-arm-none-eabi --strip-components 1 -xJ
144144
145145# Download the latest ARM GCC toolchain prebuilt by ARM
146146RUN mkdir -p gcc-arm-none-eabi && \
147147 curl -s -L "https://developer.arm.com/-/media/Files/downloads/gnu/13.2.Rel1/binrel/arm-gnu-toolchain-13.2.Rel1-x86_64-arm-none-eabi.tar.xz" \
148- | tar -C gcc-arm-none-eabi --strip-components= 1 -xJ
148+ | tar -C gcc-arm-none-eabi --strip-components 1 -xJ
149149
150150# ##############################################################################
151151# Build image for tool required by ARM64 builds
@@ -154,7 +154,7 @@ FROM nuttx-toolchain-base AS nuttx-toolchain-arm64
154154# Download the latest ARM64 GCC toolchain prebuilt by ARM
155155RUN mkdir gcc-aarch64-none-elf && \
156156 curl -s -L "https://developer.arm.com/-/media/Files/downloads/gnu/13.2.Rel1/binrel/arm-gnu-toolchain-13.2.Rel1-x86_64-aarch64-none-elf.tar.xz" \
157- | tar -C gcc-aarch64-none-elf --strip-components= 1 -xJ
157+ | tar -C gcc-aarch64-none-elf --strip-components 1 -xJ
158158
159159# ##############################################################################
160160# Build image for tool required by AVR32 builds
@@ -251,7 +251,7 @@ FROM nuttx-toolchain-base AS nuttx-toolchain-sparc
251251# Download the SPARC GCC toolchain prebuilt by Gaisler
252252RUN mkdir -p sparc-gaisler-elf-gcc && \
253253 curl -s -L "https://www.gaisler.com/anonftp/bcc2/bin/bcc-2.1.0-gcc-linux64.tar.xz" \
254- | tar -C sparc-gaisler-elf-gcc --strip-components= 1 -xJ
254+ | tar -C sparc-gaisler-elf-gcc --strip-components 1 -xJ
255255
256256# ##############################################################################
257257# Build image for tool required by ESP32 builds
@@ -260,15 +260,15 @@ FROM nuttx-toolchain-base AS nuttx-toolchain-esp32
260260# Download the latest ESP32 GCC toolchain prebuilt by Espressif
261261RUN mkdir -p xtensa-esp32-elf-gcc && \
262262 curl -s -L "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32-elf-12.2.0_20230208-x86_64-linux-gnu.tar.xz" \
263- | tar -C xtensa-esp32-elf-gcc --strip-components= 1 -xJ
263+ | tar -C xtensa-esp32-elf-gcc --strip-components 1 -xJ
264264
265265RUN mkdir -p xtensa-esp32s2-elf-gcc && \
266266 curl -s -L "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32s2-elf-12.2.0_20230208-x86_64-linux-gnu.tar.xz" \
267- | tar -C xtensa-esp32s2-elf-gcc --strip-components= 1 -xJ
267+ | tar -C xtensa-esp32s2-elf-gcc --strip-components 1 -xJ
268268
269269RUN mkdir -p xtensa-esp32s3-elf-gcc && \
270270 curl -s -L "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32s3-elf-12.2.0_20230208-x86_64-linux-gnu.tar.xz" \
271- | tar -C xtensa-esp32s3-elf-gcc --strip-components= 1 -xJ
271+ | tar -C xtensa-esp32s3-elf-gcc --strip-components 1 -xJ
272272
273273RUN echo "ESP Binaries: 2022/01/26"
274274RUN mkdir -p /tools/blobs && cd /tools/blobs \
@@ -288,7 +288,7 @@ FROM nuttx-toolchain-base AS nuttx-toolchain-wasm
288288# Download the latest WASI-enabled WebAssembly C/C++ toolchain prebuilt by WASM
289289RUN mkdir -p wasi-sdk && \
290290 curl -s -L "https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-19/wasi-sdk-19.0-linux.tar.gz" \
291- | tar -C wasi-sdk --strip-components= 1 -xz
291+ | tar -C wasi-sdk --strip-components 1 -xz
292292
293293# Download the latest "wamrc" AOT compiler prebuilt by WAMR
294294RUN mkdir -p wamrc && \
0 commit comments