Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 5 Jun 2014 01:08:26 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r356561 - head/Mk
Message-ID:  <201406050108.s5518Qdn025486@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Thu Jun  5 01:08:26 2014
New Revision: 356561
URL: http://svnweb.freebsd.org/changeset/ports/356561
QAT: https://qat.redports.org/buildarchive/r356561/

Log:
  lib-depends: Don't show "- not found" on a new line.
  
  With hat:	portmgr

Modified:
  head/Mk/bsd.port.mk

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Thu Jun  5 00:49:14 2014	(r356560)
+++ head/Mk/bsd.port.mk	Thu Jun  5 01:08:26 2014	(r356561)
@@ -5012,7 +5012,6 @@ lib-depends:
 			found=1 ; \
 			${ECHO_MSG} -n " - found ($${_LIB_FILE})"; \
 		done ; \
-		${ECHO_MSG}; \
 		if [ $${found} -eq 0 ]; then \
 			${ECHO_MSG} " - not found"; \
 			${ECHO_MSG} "===>    Verifying for $$lib in $$dir"; \
@@ -5021,6 +5020,8 @@ lib-depends:
 			else \
 				${_INSTALL_DEPENDS} \
 			fi ; \
+		else \
+			${ECHO_MSG}; \
 		fi ; \
 	done
 	@set -e ; for i in ${LIB_DEPENDS:N*.so*\:*}; do \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201406050108.s5518Qdn025486>