diff options
author | mat <mat@FreeBSD.org> | 2016-04-29 15:28:39 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-04-29 15:28:39 +0800 |
commit | 81b5f581d17ae3f032e29f96da0dd8964d6412c1 (patch) | |
tree | 446d21ad46d1030b8bfc799142b17ca779a6d423 /Mk/bsd.port.mk | |
parent | e119091c6f0d29fe968360ec8f53a12574ca3982 (diff) | |
download | freebsd-ports-gnome-81b5f581d17ae3f032e29f96da0dd8964d6412c1.tar.gz freebsd-ports-gnome-81b5f581d17ae3f032e29f96da0dd8964d6412c1.tar.zst freebsd-ports-gnome-81b5f581d17ae3f032e29f96da0dd8964d6412c1.zip |
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
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r-- | Mk/bsd.port.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 0f97c99b5ba2..374a68ab6390 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -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) |