Skip to content

Commit 05edfd7

Browse files
committed
Don't hide output when building hfsfuse
1 parent 959734a commit 05edfd7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,9 @@ export HFSFUSE_DIR
157157
hfsfuse: $(HFSFUSE_DEPS)
158158
$(if $(wildcard $(HFSFUSE_DIR)/.git),,$(error Please init and update git submodules))
159159
$(call ensure_binary,git)
160-
@printf "Building hfsfuse... "
160+
@printf "Building hfsfuse... \n"
161161
@tmpdir=$$(mktemp -d); GIT_DIR=$(HFSFUSE_DIR)/.git GIT_WORK_TREE=$$tmpdir git checkout . \
162-
&& make -C $$tmpdir CFLAGS="$(ARCH_FLAGS) -D_FILE_OFFSET_BITS=64" LDFLAGS=$(ARCH_FLAGS) >/dev/null 2>&1 \
162+
&& make -C $$tmpdir CFLAGS="$(ARCH_FLAGS) -D_FILE_OFFSET_BITS=64" LDFLAGS=$(ARCH_FLAGS) \
163163
&& cp $$tmpdir/hfsfuse $(CURDIR) && cp $$tmpdir/hfsdump $(CURDIR) \
164164
&& printf "OK\n" && rm -Rf $$tmpdir
165165

0 commit comments

Comments
 (0)