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
4 changes: 2 additions & 2 deletions base/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -183,14 +183,14 @@ endif
endef

# libexec executables
symlink_p7zip: $(build_bindir)/7z$(EXE)
symlink_p7zip: $(build_private_libexecdir)/7z$(EXE)

ifneq ($(USE_SYSTEM_P7ZIP),0)
SYMLINK_SYSTEM_LIBRARIES += symlink_p7zip
7Z_PATH := $(shell which 7z$(EXE))
endif

$(build_bindir)/7z$(EXE):
$(build_private_libexecdir)/7z$(EXE):
[ -e "$(7Z_PATH)" ] && \
rm -f "$@" && \
ln -sf "$(7Z_PATH)" "$@"
Expand Down