diff options
author | heinz <heinz> | 2004-01-27 00:53:10 +0000 |
---|---|---|
committer | heinz <heinz> | 2004-01-27 00:53:10 +0000 |
commit | c4a746650ec3ce51092f46b30440ee814f6dbcaa (patch) | |
tree | 0e38a95bbce9b72b902212b13f3fff0a72b2b5fd /x11/xservers | |
parent | d8e3f2f0d5830a73b60fbd37e5d63bfc0282c3c6 (diff) | |
download | pkgsrc-c4a746650ec3ce51092f46b30440ee814f6dbcaa.tar.gz |
Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248
Diffstat (limited to 'x11/xservers')
-rw-r--r-- | x11/xservers/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11/xservers/Makefile b/x11/xservers/Makefile index f47474daf99..e6476975aad 100644 --- a/x11/xservers/Makefile +++ b/x11/xservers/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2003/07/17 22:57:03 grant Exp $# +# $NetBSD: Makefile,v 1.13 2004/01/27 00:53:10 heinz Exp $# DISTNAME= xservers-3.3.6.3 CATEGORIES= x11 @@ -55,8 +55,8 @@ do-configure: post-install: cd ${PREFIX} && \ - ${FIND} ${X11_SUBDIR} \! -type d | ${SORT} >${PLIST_SRC} && \ - ${FIND} ${X11_SUBDIR} -type d | ${SORT} -r | \ + ${FIND} ${X11_SUBDIR} \! -type d -print | ${SORT} >${PLIST_SRC} && \ + ${FIND} ${X11_SUBDIR} -type d -print | ${SORT} -r | \ ${AWK} '{print("@dirrm "$$1)}' >>${PLIST_SRC} .include "../../mk/bsd.pkg.mk" |