base: remove duplicates from dependency list

This patch prevents duplicates in the DEPS argument to be passed to the build
stage.

Fixes #1916
This commit is contained in:
Johannes Schlatow 2016-03-18 20:12:21 +01:00 committed by Christian Helmuth
parent cda07b7da0
commit d32b5a54b6

View File

@ -144,7 +144,7 @@ endif
echo " REP_DIR=$(REP_DIR) \\"; \
echo " LIB_MK=$(LIB_MK) \\"; \
echo " LIB=$(LIB) \\"; \
echo " DEPS=\"\$$($(DEP_VAR_NAME))\" \\"; \
echo " DEPS=\"\$$(sort \$$($(DEP_VAR_NAME)))\" \\"; \
echo " BUILD_BASE_DIR=$(BUILD_BASE_DIR) \\"; \
echo " SHELL=$(SHELL) \\"; \
echo " SHARED_LIBS=\"\$$(SHARED_LIBS)\"\\"; \