svn commit: r355251 - head/Mk

Bryan Drewery bdrewery at FreeBSD.org
Sun May 25 15:42:53 UTC 2014


Author: bdrewery
Date: Sun May 25 15:42:52 2014
New Revision: 355251
URL: http://svnweb.freebsd.org/changeset/ports/355251
QAT: https://qat.redports.org/buildarchive/r355251/

Log:
  - When searching for lib-depends, show which file was found.
    This also fixes "- found" showing alone when there are multiple matches.
  
  PR:		ports/187084

Modified:
  head/Mk/bsd.port.mk

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Sun May 25 15:02:34 2014	(r355250)
+++ head/Mk/bsd.port.mk	Sun May 25 15:42:52 2014	(r355251)
@@ -5044,8 +5044,9 @@ lib-depends:
 				[ `file -b -L --mime-type $${_LIB_FILE}` = "application/x-sharedlib" ] || continue ; \
 			fi ; \
 			found=1 ; \
-			${ECHO_MSG} " - found"; \
+			${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"; \


More information about the svn-ports-all mailing list