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 /ftp | |
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 'ftp')
-rw-r--r-- | ftp/sftp/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ftp/sftp/Makefile b/ftp/sftp/Makefile index cc92dbc7cf82..fd74b25a2719 100644 --- a/ftp/sftp/Makefile +++ b/ftp/sftp/Makefile @@ -32,7 +32,7 @@ pre-install: ${ECHO_CMD} bin/sftp >> ${PLIST}.unsorted; \ ${ECHO_CMD} man/man1/sftp.1.gz >> ${PLIST}.unsorted; \ fi - @sort -u ${PLIST}.unsorted > ${PLIST} + @${SORT} -u ${PLIST}.unsorted > ${PLIST} do-install: ${INSTALL_PROGRAM} ${WRKSRC}/sftp ${PREFIX}/bin/secftp |