From 05edfd72df630b218a3bfa0c328dbd741238ccb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tor=20Arne=20Vestb=C3=B8?= Date: Wed, 7 Jul 2021 00:47:16 +0200 Subject: [PATCH] Don't hide output when building hfsfuse --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 78083cf..3bd4f29 100644 --- a/Makefile +++ b/Makefile @@ -157,9 +157,9 @@ export HFSFUSE_DIR hfsfuse: $(HFSFUSE_DEPS) $(if $(wildcard $(HFSFUSE_DIR)/.git),,$(error Please init and update git submodules)) $(call ensure_binary,git) - @printf "Building hfsfuse... " + @printf "Building hfsfuse... \n" @tmpdir=$$(mktemp -d); GIT_DIR=$(HFSFUSE_DIR)/.git GIT_WORK_TREE=$$tmpdir git checkout . \ - && make -C $$tmpdir CFLAGS="$(ARCH_FLAGS) -D_FILE_OFFSET_BITS=64" LDFLAGS=$(ARCH_FLAGS) >/dev/null 2>&1 \ + && make -C $$tmpdir CFLAGS="$(ARCH_FLAGS) -D_FILE_OFFSET_BITS=64" LDFLAGS=$(ARCH_FLAGS) \ && cp $$tmpdir/hfsfuse $(CURDIR) && cp $$tmpdir/hfsdump $(CURDIR) \ && printf "OK\n" && rm -Rf $$tmpdir