aboutsummaryrefslogtreecommitdiffstats
path: root/Mk
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2014-05-17 11:25:37 +0800
committerdes <des@FreeBSD.org>2014-05-17 11:25:37 +0800
commitd48da93601ec529d1f373ef06458e05726bd968c (patch)
tree5dd4742b9570cda632ffea20b8bd61e2bb18ecef /Mk
parent6b115cd4857a30f9b33f45504c9b69c490d93208 (diff)
downloadfreebsd-ports-graphics-d48da93601ec529d1f373ef06458e05726bd968c.tar.gz
freebsd-ports-graphics-d48da93601ec529d1f373ef06458e05726bd968c.tar.zst
freebsd-ports-graphics-d48da93601ec529d1f373ef06458e05726bd968c.zip
Fix quoting: make is too smart and quotes tildes, which trips up pkg.
Approved by: portmgr (bapt)
Diffstat (limited to 'Mk')
-rw-r--r--Mk/bsd.pkgng.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.pkgng.mk b/Mk/bsd.pkgng.mk
index 45740ed89ad..38caa8d5acd 100644
--- a/Mk/bsd.pkgng.mk
+++ b/Mk/bsd.pkgng.mk
@@ -87,7 +87,7 @@ create-manifest:
.if defined(PKG_NOTES)
@${ECHO_CMD} -n "annotations: {" >> ${MANIFESTF}
.for note in ${PKG_NOTES}
- @${ECHO_CMD} -n ' ${note}: "${PKG_NOTE_${note}:Q}",' >> ${MANIFESTF}
+ @${ECHO_CMD} -n ' ${note}: "${PKG_NOTE_${note}:S/"/\"/g}",' >> ${MANIFESTF}
.endfor
@${ECHO_CMD} " }" >> ${MANIFESTF}
.endif