summaryrefslogtreecommitdiff
path: root/textproc/py-dtml/Makefile
diff options
context:
space:
mode:
authorheinz <heinz>2004-01-28 23:41:08 +0000
committerheinz <heinz>2004-01-28 23:41:08 +0000
commit7817db92b8cf2e0cc84ed8f6d4a80213840aec9a (patch)
treeee2dafb2951b2293a0cb414d389759b7dbafd231 /textproc/py-dtml/Makefile
parent1c5ae7880f33ddba41c477669fd6c660bcd4a615 (diff)
downloadpkgsrc-7817db92b8cf2e0cc84ed8f6d4a80213840aec9a.tar.gz
Do not use "find -d". This option is not available on all supported platforms.
Diffstat (limited to 'textproc/py-dtml/Makefile')
-rw-r--r--textproc/py-dtml/Makefile7
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"