svn commit: r350013 - head/Mk/Scripts

Bryan Drewery bdrewery at FreeBSD.org
Thu Apr 3 14:09:01 UTC 2014


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}


More information about the svn-ports-all mailing list