summaryrefslogtreecommitdiff
path: root/net/mrt/Makefile
diff options
context:
space:
mode:
authorheinz <heinz>2004-01-28 23:24:08 +0000
committerheinz <heinz>2004-01-28 23:24:08 +0000
commit1c5ae7880f33ddba41c477669fd6c660bcd4a615 (patch)
tree187d8b80fcfb357f8c0c45be2ffd4e99dbc3c199 /net/mrt/Makefile
parent117195690c0a738276b50a10a5fdfd8413b64d51 (diff)
downloadpkgsrc-1c5ae7880f33ddba41c477669fd6c660bcd4a615.tar.gz
Do not use "find -d". This option is not available on all supported platforms.
Diffstat (limited to 'net/mrt/Makefile')
-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"