Date: Mon, 23 Sep 2013 10:23:36 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r327968 - head/Mk Message-ID: <201309231023.r8NANahl012461@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Mon Sep 23 10:23:35 2013 New Revision: 327968 URL: http://svnweb.freebsd.org/changeset/ports/327968 Log: Sort earlier to preserver the FS ordering Reported by: danfe Modified: head/Mk/bsd.stage.mk Modified: head/Mk/bsd.stage.mk ============================================================================== --- head/Mk/bsd.stage.mk Mon Sep 23 10:20:56 2013 (r327967) +++ head/Mk/bsd.stage.mk Mon Sep 23 10:23:35 2013 (r327968) @@ -82,11 +82,11 @@ makeplist: stage [ -z "$${a}" ] && break ; \ ${ECHO_CMD} $${a} >> ${WRKDIR}/.mtree ; \ done - @${FIND} ${STAGEDIR} -type f -o -type l | ${SED} -e "s,${STAGEDIR},,g" \ + @${FIND} ${STAGEDIR} -type f -o -type l | sort | ${SED} -e "s,${STAGEDIR},,g" \ -e "s,${DOCSDIR},%%PORTDOCS%%%%DOCSDIR%%,g" \ -e "s,${EXAMPLESDIR},%%PORTEXAMPLES%%%%EXAMPLESDIR%%,g" \ -e "s,${DATADIR},%%DATADIR%%,g" \ - -e "s,${PREFIX}/,,g" | sort | grep -v "^share/licenses" || ${TRUE} + -e "s,${PREFIX}/,,g" | grep -v "^share/licenses" || ${TRUE} @${FIND} ${STAGEDIR} -type d | sed -e "s,${STAGEDIR},,g" \ | while read line; do \ ${GREP} -qw "^$${line}$$" ${WRKDIR}/.mtree || { \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309231023.r8NANahl012461>