diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2004-01-22 11:06:02 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2004-01-22 11:06:02 +0000 |
commit | fbd1108f49e97dfa6bd38fe69dc8f6b8ab89bb26 (patch) | |
tree | 9b742ae12218d8cfd77191127558a0c126be4516 /lang/mozart/Makefile | |
parent | I have no idea how these features* files made the way to my machine, (diff) |
Use the SORT macro from bsd.port.mk.
Notes
Notes:
svn path=/head/; revision=98788
Diffstat (limited to 'lang/mozart/Makefile')
-rw-r--r-- | lang/mozart/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/mozart/Makefile b/lang/mozart/Makefile index daac92b467fb..2076d5701d00 100644 --- a/lang/mozart/Makefile +++ b/lang/mozart/Makefile @@ -75,9 +75,9 @@ post-install: | ${XARGS} -0 ${CHMOD} ${SHAREMODE} @${RM} -rf ${PREFIX}/lib/oz/mozart .endif - @cd ${PREFIX} ; ${FIND} lib/oz -type f -o -type l | sort \ + @cd ${PREFIX} ; ${FIND} lib/oz -type f -o -type l | ${SORT} \ > ${WRKDIR}/PLIST.lib-oz - @cd ${PREFIX} ; ${FIND} lib/oz -type d | sort -r \ + @cd ${PREFIX} ; ${FIND} lib/oz -type d | ${SORT} -r \ | ${SED} -e 's/^/@dirrm /g' \ >> ${WRKDIR}/PLIST.lib-oz @${ECHO_CMD} "r ${TMPPLIST}" > ${WRKDIR}/ex.script |