diff options
author | mat <mat@FreeBSD.org> | 2016-08-09 22:29:04 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-08-09 22:29:04 +0800 |
commit | 4d3be255a9fcd2ba023d1f156e84e70b84e3c5f8 (patch) | |
tree | e5802ad0d0ee8cd905501db142e45bf64dabadbd /Mk | |
parent | 0cf8900325437d33b84d29013a7b46d55c45f562 (diff) | |
download | freebsd-ports-gnome-4d3be255a9fcd2ba023d1f156e84e70b84e3c5f8.tar.gz freebsd-ports-gnome-4d3be255a9fcd2ba023d1f156e84e70b84e3c5f8.tar.zst freebsd-ports-gnome-4d3be255a9fcd2ba023d1f156e84e70b84e3c5f8.zip |
Don't overquote the DEPRECATED message, it ended up looking silly.
Something like:
-----------
This port is deprecated; you may wish to reconsider installing it:
EOL\ upstream\ since\ 10\ Jul\ 2016.
It is scheduled to be removed on or after 2016-08-20.
-----------
PR: 211421
Reported by: Miroslav Lachman
Sponsored by: Absolight
Diffstat (limited to '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 ebe2fa34e6e4..f3c43dc4a6c9 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -4240,7 +4240,7 @@ create-manifest: dp_CATEGORIES='${CATEGORIES:u:S/$/,/}' \ dp_COMMENT=${COMMENT:Q} \ dp_COMPLETE_OPTIONS_LIST='${COMPLETE_OPTIONS_LIST}' \ - dp_DEPRECATED='${DEPRECATED:Q}' \ + dp_DEPRECATED=${DEPRECATED:Q} \ dp_DESCR='${DESCR}' \ dp_EXPIRATION_DATE='${EXPIRATION_DATE}' \ dp_GROUPS='${GROUPS:u:S/$/,/}' \ |