svn commit: r509281 - head/Mk/Scripts

Mathieu Arnold mat at FreeBSD.org
Mon Aug 19 12:18:17 UTC 2019


Author: mat
Date: Mon Aug 19 12:18:16 2019
New Revision: 509281
URL: https://svnweb.freebsd.org/changeset/ports/509281

Log:
  If pkg-message is not a UCL file, assume the message is "install" only.
  
  Reviewed by:	adamw
  Differential Revision:	https://reviews.freebsd.org/D21262

Modified:
  head/Mk/Scripts/create-manifest.sh   (contents, props changed)

Modified: head/Mk/Scripts/create-manifest.sh
==============================================================================
--- head/Mk/Scripts/create-manifest.sh	Mon Aug 19 12:17:56 2019	(r509280)
+++ head/Mk/Scripts/create-manifest.sh	Mon Aug 19 12:18:16 2019	(r509281)
@@ -119,7 +119,7 @@ for message in ${dp_PKGMESSAGES}; do
 		if head -1 "${message}" | grep -q '^\['; then
 			sed '1d;$d' "${message}"
 		else
-			echo '{message=<<EOD'
+			echo '{type: install, message=<<EOD'
 			cat "${message}"
 			printf 'EOD\n},\n'
 		fi


More information about the svn-ports-all mailing list