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 /editors/vim | |
parent | 4bf1b98ed95c044ceb91201095348dd7ef4787f9 (diff) |
Notes
Diffstat (limited to 'editors/vim')
-rw-r--r-- | editors/vim/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/vim/Makefile b/editors/vim/Makefile index e247875cea26..20000b4fad47 100644 --- a/editors/vim/Makefile +++ b/editors/vim/Makefile @@ -158,11 +158,11 @@ post-install: ${INSTALL_DATA} ${FILESDIR}/vietnamese_viscii.vim ${DATADIR}/keymap cd ${PREFIX} ;\ ${FIND} share/vim/${_DATADIR} -type f -o -type l \ - | sort \ + | ${SORT} \ >${WRKDIR}/PLIST.share-vim cd ${PREFIX} ;\ - ${FIND} share/vim/${_DATADIR} -type d \ - | sort -r | ${SED} -e 's/^/@dirrm /g' \ + ${FIND} share/vim/${_DATADIR} -type d \ + | ${SORT} -r | ${SED} -e 's/^/@dirrm /g' \ >>${WRKDIR}/PLIST.share-vim ${ECHO_CMD} "r ${TMPPLIST}" > ${WRKDIR}/ex.script ${ECHO_CMD} "/Insert PLIST.share-vim" >> ${WRKDIR}/ex.script |