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:
Sjon Hortensius
2016-09-25 15:14:59 +02:00
parent 20525a8a6c
commit f79467f5a1
+4 -1
View File
@@ -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)