Don't hide output when building hfsfuse

This commit is contained in:
Tor Arne Vestbø
2021-07-07 00:47:16 +02:00
parent 959734ae53
commit 05edfd72df

View File

@@ -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