8066752: Remove space after -L on linker lines

Reviewed-by: ihse
This commit is contained in:
Erik Joelsson 2014-12-09 08:43:06 +01:00
parent b633764a63
commit 294a85dbe7
3 changed files with 12 additions and 10 deletions

View File

@ -79,7 +79,9 @@ endif
# Param 2 - library name
# Param 3 - subdir for library
define FindLib
$(call FindLibDirForModule, $(strip $1))$(strip $3)/$(LIBRARY_PREFIX)$(strip $2)$(SHARED_LIBRARY_SUFFIX)
$(strip \
$(call FindLibDirForModule, $(strip $1))$(strip $3)/$(LIBRARY_PREFIX)$(strip $2)$(SHARED_LIBRARY_SUFFIX) \
)
endef
################################################################################