Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 8 Oct 2014 06:19:54 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r370416 - head/Mk/Scripts
Message-ID:  <201410080619.s986JsUh079392@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410080619.s986JsUh079392>