We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 959734a commit 05edfd7Copy full SHA for 05edfd7
1 file changed
Makefile
@@ -157,9 +157,9 @@ export HFSFUSE_DIR
157
hfsfuse: $(HFSFUSE_DEPS)
158
$(if $(wildcard $(HFSFUSE_DIR)/.git),,$(error Please init and update git submodules))
159
$(call ensure_binary,git)
160
- @printf "Building hfsfuse... "
+ @printf "Building hfsfuse... \n"
161
@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 \
+ && make -C $$tmpdir CFLAGS="$(ARCH_FLAGS) -D_FILE_OFFSET_BITS=64" LDFLAGS=$(ARCH_FLAGS) \
163
&& cp $$tmpdir/hfsfuse $(CURDIR) && cp $$tmpdir/hfsdump $(CURDIR) \
164
&& printf "OK\n" && rm -Rf $$tmpdir
165
0 commit comments