Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deps/tools/bb-install.mk
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ ifneq (bsdtar,$(findstring bsdtar,$(TAR_TEST)))
@# work-around a gtar bug: they do some complicated work to avoid the mkdir
@# syscall, which is buggy when working with Tar.jl files so we manually do
@# the mkdir calls first in a pre-pass
$(TAR) -tzf $$< | xargs -L 1 dirname | sort -u | (cd $$(build_prefix) && xargs -t mkdir -p)
$(TAR) -tzf $$< | xargs -n 1 dirname | sort -u | (cd $$(build_prefix) && xargs -t mkdir -p)
endif
$(UNTAR) $$< -C $$(build_prefix)
echo '$$(UNINSTALL_$(strip $1))' > $$@
Expand Down