diff options
author | heinz <heinz@pkgsrc.org> | 2004-01-28 23:41:08 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2004-01-28 23:41:08 +0000 |
commit | 1585f86d2828f616030f979e948e05154721c0f1 (patch) | |
tree | ee2dafb2951b2293a0cb414d389759b7dbafd231 /textproc | |
parent | 779292cca2b12d8eac709795b255efd626aa2a34 (diff) | |
download | pkgsrc-1585f86d2828f616030f979e948e05154721c0f1.tar.gz |
Do not use "find -d". This option is not available on all supported platforms.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/py-dtml/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/textproc/py-dtml/Makefile b/textproc/py-dtml/Makefile index 5393f2e3c3d..fb7f837d40d 100644 --- a/textproc/py-dtml/Makefile +++ b/textproc/py-dtml/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2004/01/20 12:26:50 agc Exp $ +# $NetBSD: Makefile,v 1.15 2004/01/28 23:41:08 heinz Exp $ # DISTNAME= Zope-2.2.2-src @@ -36,9 +36,10 @@ do-install: cd ${PREFIX} && ${FIND} ${PY_SITEPATH}/DocumentTemplate \ ${PY_SITEPATH}/StructuredText \ -type f -print >>${PLIST_SRC} - cd ${PREFIX} && ${FIND} -d ${PY_SITEPATH}/DocumentTemplate \ + cd ${PREFIX} && ${FIND} ${PY_SITEPATH}/DocumentTemplate \ ${PY_SITEPATH}/StructuredText \ - -type d -print | ${SED} -e "s/^/@dirrm /" >>${PLIST_SRC} + -type d -print | ${SORT} -r | \ + ${SED} -e "s/^/@dirrm /" >>${PLIST_SRC} .include "../../lang/python20/Makefile.inc" .include "../../mk/bsd.pkg.mk" |