diff options
author | heinz <heinz@pkgsrc.org> | 2004-01-27 00:53:10 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2004-01-27 00:53:10 +0000 |
commit | c00807be673f4f2bb5250bb34151186d0006749e (patch) | |
tree | 0e38a95bbce9b72b902212b13f3fff0a72b2b5fd /devel/mit-pthreads/Makefile | |
parent | ede0be0eaa8bfcc8cfdb0b40604997b8ceb055d7 (diff) | |
download | pkgsrc-c00807be673f4f2bb5250bb34151186d0006749e.tar.gz |
Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248
Diffstat (limited to 'devel/mit-pthreads/Makefile')
-rw-r--r-- | devel/mit-pthreads/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/mit-pthreads/Makefile b/devel/mit-pthreads/Makefile index b547d8f7bf9..7216c73e1cf 100644 --- a/devel/mit-pthreads/Makefile +++ b/devel/mit-pthreads/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2003/07/17 21:31:50 grant Exp $ +# $NetBSD: Makefile,v 1.39 2004/01/27 00:53:12 heinz Exp $ # DISTNAME= pthreads-1_60_beta6 @@ -40,7 +40,7 @@ pre-install: post-install: @${RM} -f ${PREFIX}/pthreads/lib/libpthread_pic.a - @${FIND} ${PREFIX}/pthreads/include -name '*.orig' | ${XARGS} ${RM} + @${FIND} ${PREFIX}/pthreads/include -name '*.orig' -print | ${XARGS} ${RM} @${FIND} ${PREFIX}/pthreads/include -type f -print | ${XARGS} ${CHMOD} 644 @${FIND} ${PREFIX}/pthreads/include -type d -print | ${XARGS} ${CHMOD} 755 @${CHOWN} -R ${BINOWN}:${BINGRP} ${PREFIX}/pthreads/include |