diff options
author | trevor <trevor@FreeBSD.org> | 2004-01-22 19:06:02 +0800 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2004-01-22 19:06:02 +0800 |
commit | 95b0fb093b0c0fe3ac4b112fd462a41fa1933a35 (patch) | |
tree | 607a7a5c9179d269688eebfcbd7a60c01c983c03 /mail/openwebmail | |
parent | dbde1e218a8b9a82a1edefb7c0aed001b0d24fd5 (diff) | |
download | freebsd-ports-gnome-95b0fb093b0c0fe3ac4b112fd462a41fa1933a35.tar.gz freebsd-ports-gnome-95b0fb093b0c0fe3ac4b112fd462a41fa1933a35.tar.zst freebsd-ports-gnome-95b0fb093b0c0fe3ac4b112fd462a41fa1933a35.zip |
Use the SORT macro from bsd.port.mk.
Diffstat (limited to 'mail/openwebmail')
-rw-r--r-- | mail/openwebmail/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mail/openwebmail/Makefile b/mail/openwebmail/Makefile index 642309dd7a41..8f5e6ae6a665 100644 --- a/mail/openwebmail/Makefile +++ b/mail/openwebmail/Makefile @@ -125,7 +125,8 @@ pre-install: @${FIND} ${WRKSRC}/*/openwebmail \( -name "*.bak" -or -name "*.orig" \) -delete .if !exists(${PLIST}) @${ECHO} "@unexec if cmp -s %D/www/cgi-bin/openwebmail/etc/openwebmail.conf %D/www/cgi-bin/openwebmail/etc/openwebmail.conf-dist; then ${RM} -f %D/www/cgi-bin/openwebmail/etc/openwebmail.conf; fi" > ${PLIST} - @${FIND} ${WRKSRC}/*/openwebmail -type f -o -type l | ${SED} -e 's,${WRKSRC},www,g' | sort -u >> ${PLIST} + @${FIND} ${WRKSRC}/*/openwebmail -type f -o -type l | \ + ${SED} -e 's,${WRKSRC},www,g' | ${SORT} -u >> ${PLIST} @${ECHO} "www/cgi-bin/openwebmail/etc/dbm.conf" >> ${PLIST} .for f in b2g g2b lunar @${ECHO} "www/cgi-bin/openwebmail/etc/${f}.db" >> ${PLIST} @@ -136,7 +137,8 @@ pre-install: -e 's,openwebmail/openwebmail,openwebmail/.openwebmail,g' \ >> ${PLIST} .endif - @${FIND} ${WRKSRC}/*/openwebmail -type d | sort -ur | ${SED} -e 's,${WRKSRC},@dirrm www,g' >> ${PLIST} + @${FIND} ${WRKSRC}/*/openwebmail -type d | ${SORT} -ur | \ + ${SED} -e 's,${WRKSRC},@dirrm www,g' >> ${PLIST} .endif do-install: |