1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

Fails is a dependency checking failed with bmake

This commit is contained in:
Baptiste Daroussin 2013-06-13 11:19:10 +00:00
parent d224190dbe
commit c353152f66
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=320756

View File

@ -4991,7 +4991,7 @@ _INSTALL_DEPENDS= \
${deptype:L}-depends:
.if defined(${deptype}_DEPENDS)
.if !defined(NO_DEPENDS)
@for i in `${ECHO_CMD} "${${deptype}_DEPENDS}"`; do \
@set -e ; for i in `${ECHO_CMD} "${${deptype}_DEPENDS}"`; do \
prog=$${i%%:*}; \
if [ -z "$$prog" ]; then \
${ECHO_MSG} "Error: there is an empty port dependency in ${deptype}_DEPENDS."; \
@ -5089,7 +5089,7 @@ ${deptype:L}-depends:
lib-depends:
.if defined(LIB_DEPENDS) && !defined(NO_DEPENDS)
@for i in ${LIB_DEPENDS}; do \
@set -e ; for i in ${LIB_DEPENDS}; do \
lib=$${i%%:*}; \
pattern="`${ECHO_CMD} $$lib | ${SED} -E -e 's/\./\\\\./g' -e 's/(\\\\)?\+/\\\\+/g'`"\
dir=$${i#*:}; \