Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Apr 2016 07:28:39 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r414260 - head/Mk
Message-ID:  <201604290728.u3T7Sdc5070416@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)



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