diff options
author | heinz <heinz> | 2004-01-28 23:41:08 +0000 |
---|---|---|
committer | heinz <heinz> | 2004-01-28 23:41:08 +0000 |
commit | 6b37e6cbd493cb48d40b946db620aa50e4d15803 (patch) | |
tree | ee2dafb2951b2293a0cb414d389759b7dbafd231 /www | |
parent | eaef36c3438899a552e47c475d083e95e00a7deb (diff) | |
download | pkgsrc-6b37e6cbd493cb48d40b946db620aa50e4d15803.tar.gz |
Do not use "find -d". This option is not available on all supported platforms.
Diffstat (limited to 'www')
-rw-r--r-- | www/zope/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/zope/Makefile b/www/zope/Makefile index 18600db0579..a750752348c 100644 --- a/www/zope/Makefile +++ b/www/zope/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2003/07/17 22:56:08 grant Exp $ +# $NetBSD: Makefile,v 1.21 2004/01/28 23:50:00 heinz Exp $ # DISTNAME= Zope-2.2.2-src @@ -38,7 +38,7 @@ do-install: ${PREFIX}/lib/python2.0/compileall.py ${ZOPEDIR} ${CHMOD} -R a+rX ${ZOPEDIR} cd ${PREFIX} && ${FIND} lib/zope \( -type f -o -type l \) -print >>${PLIST_SRC} - cd ${PREFIX} && ${FIND} -d lib/zope -type d -print | \ + cd ${PREFIX} && ${FIND} lib/zope -type d -print | ${SORT} -r | \ ${SED} -e "s/^/@dirrm /" >>${PLIST_SRC} ${SED} -e "s,/usr/pkg,${PREFIX}," \ <${FILESDIR}/zope-install.py >${PREFIX}/sbin/zope-install |