svn commit: r414260 - head/Mk

Mathieu Arnold mat at FreeBSD.org
Fri Apr 29 07:28:40 UTC 2016


Author: mat
Date: Fri Apr 29 07:28:39 2016
New Revision: 414260
URL: https://svnweb.freebsd.org/changeset/ports/414260

Log:
  Remove quotes here, ${m} is already quoted.
  
  With the quotes, it ends up doing, for example:
  
  echo ""It looks like the ocaml>=3.11:/home/mat/work/freebsd/ports/lang/ocaml depends line has an absolute port origin, make sure to remove \${PORTSDIR}/ from it.""
  
  Which ends up failing with an error:
  
  cannot create =3.11:/home/mat/work/freebsd/ports/lang/ocaml: No such file or directory
  
  Noticed by:	antoine (via qat)
  Sponsored by:	Absolight

Modified:
  head/Mk/bsd.port.mk   (contents, props changed)

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Fri Apr 29 07:04:54 2016	(r414259)
+++ head/Mk/bsd.port.mk	Fri Apr 29 07:28:39 2016	(r414260)
@@ -5624,7 +5624,7 @@ show-dev-warnings:
 	@${ECHO_MSG} "/!\\ ${PKGNAME}: Makefile warnings, please consider fixing /!\\"
 	@${ECHO_MSG}
 .for m in ${DEV_WARNING}
-	@${ECHO_MSG} "${m}"
+	@${ECHO_MSG} ${m}
 .endfor
 	@${ECHO_MSG}
 .if defined(DEV_WARNING_FATAL)


More information about the svn-ports-head mailing list