mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-27 19:17:43 +00:00
Makefile: only add uutils
with MULTICALL=y
fixes error when making without MULTICALL=y > install: cannot stat 'xxx/target/release/deps/uutils': No such file or directory
This commit is contained in:
parent
20525a8a6c
commit
f79467f5a1
1 changed files with 4 additions and 1 deletions
5
Makefile
5
Makefile
|
@ -226,7 +226,10 @@ endef
|
|||
EXES := \
|
||||
$(sort $(filter $(UTILS),$(filter-out $(SKIP_UTILS),$(PROGS))))
|
||||
|
||||
INSTALLEES := ${EXES} uutils
|
||||
INSTALLEES := ${EXES}
|
||||
ifeq (${MULTICALL}, y)
|
||||
INSTALLEES := ${INSTALLEES} uutils
|
||||
endif
|
||||
|
||||
# Shared library extension
|
||||
SYSTEM := $(shell uname)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue