From 2783592b5a022a6cf983fca5c7bfbe1f9ddde0a5 Mon Sep 17 00:00:00 2001 From: Simone Karin Lehmann Date: Sun, 1 Feb 2026 16:45:06 +0100 Subject: [PATCH] no need for truncate. It's in macOS --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 96043a3..01798e0 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # Makefile to easily build all needed tools -BINS = e2fsck resize2fs tune2fs truncate +BINS = e2fsck resize2fs tune2fs $(BINS): ./make_e2fstools @@ -14,7 +14,6 @@ install: install -m 755 resize2fs /usr/local/bin install -m 755 tune2fs /usr/local/bin install -m 755 pishrink /usr/local/bin - install -m 755 truncate /usr/local/bin uninstall: - rm -f /usr/local/bin/e2fsck /usr/local/bin/resize2fs /usr/local/bin/tune2fs /usr/local/bin/pishrink /usr/local/bin/truncate + rm -f /usr/local/bin/e2fsck /usr/local/bin/resize2fs /usr/local/bin/tune2fs /usr/local/bin/pishrink