Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 3 Apr 2014 14:09:01 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r350013 - head/Mk/Scripts
Message-ID:  <201404031409.s33E91pG009455@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Thu Apr  3 14:09:00 2014
New Revision: 350013
URL: http://svnweb.freebsd.org/changeset/ports/350013
QAT: https://qat.redports.org/buildarchive/r350013/

Log:
  - stage-qa: Fix absolute symlink check to look at target not fully resolved
    path. Now tested on both good and bad symlinks.
  
  Reported by:	antoine
  Pointyhat to:	bdrewery
  With hat:	portmgr

Modified:
  head/Mk/Scripts/qa.sh

Modified: head/Mk/Scripts/qa.sh
==============================================================================
--- head/Mk/Scripts/qa.sh	Thu Apr  3 13:37:42 2014	(r350012)
+++ head/Mk/Scripts/qa.sh	Thu Apr  3 14:09:00 2014	(r350013)
@@ -61,7 +61,7 @@ symlinks() {
 		esac
 	# Use heredoc to avoid losing rc from find|while subshell
 	done << EOF
-$(find ${STAGEDIR} -type l -exec stat -f "%N %R" {} +)
+$(find ${STAGEDIR} -type l -exec stat -f "%N %Y" {} +)
 EOF
 
 	return ${rc}



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