svn commit: r370416 - head/Mk/Scripts

Antoine Brodin antoine at FreeBSD.org
Wed Oct 8 06:19:54 UTC 2014


Author: antoine
Date: Wed Oct  8 06:19:54 2014
New Revision: 370416
URL: https://svnweb.freebsd.org/changeset/ports/370416
QAT: https://qat.redports.org/buildarchive/r370416/

Log:
  info keyword now handles full paths
  
  With hat:	portmgr

Modified:
  head/Mk/Scripts/check-stagedir.sh

Modified: head/Mk/Scripts/check-stagedir.sh
==============================================================================
--- head/Mk/Scripts/check-stagedir.sh	Wed Oct  8 06:13:43 2014	(r370415)
+++ head/Mk/Scripts/check-stagedir.sh	Wed Oct  8 06:19:54 2014	(r370416)
@@ -71,7 +71,10 @@ parse_plist() {
 		@info\ *|@shell\ *)
 			set -- $line
 			shift
-			echo "${comment}${cwd}/$@"
+			case "$@" in
+			/*) echo "${comment}$@" ;;
+			*) echo "${comment}${cwd}/$@" ;;
+			esac
 		;;
 		@sample\ *)
 			set -- $line


More information about the svn-ports-all mailing list