From 8e5adddafd314ed56cc47edb30110627cf43929f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 4 Aug 2025 10:55:16 +0200 Subject: [PATCH] Makefile: fix `tools-linux` target for non-GNU tar `tar` on macOS has no `--strip-components=1`. No actual functional changes. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 8f297451..b35ecc31 100644 --- a/Makefile +++ b/Makefile @@ -216,9 +216,9 @@ tools-linux: https://www.johnvansickle.com/ffmpeg/releases/ffmpeg-$(FFMPEG_VERSION)-amd64-static.tar.xz tar xvf \ $(FFMPEG_PACKAGE_LINUX) \ - ffmpeg-$(FFMPEG_VERSION)-amd64-static/ffmpeg \ - --strip-components=1 - mv ffmpeg $(TOOLS)/ffmpeg-linux-amd64 + ffmpeg-$(FFMPEG_VERSION)-amd64-static/ffmpeg + mv ffmpeg-$(FFMPEG_VERSION)-amd64-static/ffmpeg $(TOOLS)/ffmpeg-linux-amd64 + rmdir ffmpeg-$(FFMPEG_VERSION)-amd64-static .PHONY: tools-darwin tools-darwin: