diff options
author | bapt <bapt@FreeBSD.org> | 2013-06-13 19:19:10 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-06-13 19:19:10 +0800 |
commit | e3fa30817ffb783c46b5cff138616eaae5190e5a (patch) | |
tree | b84872bb12efa680cb4740b418d1f384cea5b386 /Mk | |
parent | 0a3dd2abc5af7d383e37d04275a395babb704e34 (diff) | |
download | freebsd-ports-gnome-e3fa30817ffb783c46b5cff138616eaae5190e5a.tar.gz freebsd-ports-gnome-e3fa30817ffb783c46b5cff138616eaae5190e5a.tar.zst freebsd-ports-gnome-e3fa30817ffb783c46b5cff138616eaae5190e5a.zip |
Fails is a dependency checking failed with bmake
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 6deebed86db5..6f668fe3d56f 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -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#*:}; \ |