summaryrefslogtreecommitdiff
path: root/net/mrt
diff options
context:
space:
mode:
authorheinz <heinz@pkgsrc.org>2004-01-28 23:24:08 +0000
committerheinz <heinz@pkgsrc.org>2004-01-28 23:24:08 +0000
commit779292cca2b12d8eac709795b255efd626aa2a34 (patch)
tree187d8b80fcfb357f8c0c45be2ffd4e99dbc3c199 /net/mrt
parentac066bb9e253887a12b84499520700d5c754e010 (diff)
downloadpkgsrc-779292cca2b12d8eac709795b255efd626aa2a34.tar.gz
Do not use "find -d". This option is not available on all supported platforms.
Diffstat (limited to 'net/mrt')
-rw-r--r--net/mrt/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/mrt/Makefile b/net/mrt/Makefile
index 452ebfa3c9f..c8d97eca814 100644
--- a/net/mrt/Makefile
+++ b/net/mrt/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2004/01/20 12:22:20 agc Exp $
+# $NetBSD: Makefile,v 1.8 2004/01/28 23:24:08 heinz Exp $
#
DISTNAME= mrt-2.2.2a-Aug11
@@ -26,7 +26,7 @@ post-install:
${PREFIX}/share/examples/mrt
(cd ${PREFIX}; ${FIND} share/examples/mrt -type f -print \
>> ${PLIST_SRC})
- (cd ${PREFIX}; ${FIND} -d share/examples/mrt -type d -print | \
- ${SED} -e "s/^/@dirrm /" >>${PLIST_SRC})
+ (cd ${PREFIX}; ${FIND} share/examples/mrt -type d -print | \
+ ${SORT} -r | ${SED} -e "s/^/@dirrm /" >>${PLIST_SRC})
.include "../../mk/bsd.pkg.mk"