diff options
author | tron <tron> | 1999-05-01 18:13:07 +0000 |
---|---|---|
committer | tron <tron> | 1999-05-01 18:13:07 +0000 |
commit | 4e08a74ceb929b83b70525922aa14f4efed2d00c (patch) | |
tree | bddaff26c77910e7cb1fae4fab469d929e635caa /devel/mit-pthreads | |
parent | de76094d373edd8f923daa5b0eb09f043786d97f (diff) | |
download | pkgsrc-4e08a74ceb929b83b70525922aa14f4efed2d00c.tar.gz |
Correct "rm" command which is supposed to remove "libpthread_pic.a".
Fixes PR pkg/7505 by Nick Hudson.
Diffstat (limited to 'devel/mit-pthreads')
-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 c0253bb8276..68cbbf89368 100644 --- a/devel/mit-pthreads/Makefile +++ b/devel/mit-pthreads/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 1999/04/16 16:33:19 bad Exp $ +# $NetBSD: Makefile,v 1.16 1999/05/01 18:13:07 tron Exp $ # DISTNAME= pthreads-1_60_beta6 @@ -19,7 +19,7 @@ pre-install: -mkdir ${PREFIX}/pthreads post-install: - @${RM} -f ${LOCALBASE}/pthreads/libpthread_pic.a + @${RM} -f ${PREFIX}/pthreads/lib/libpthread_pic.a find ${PREFIX}/pthreads/include -name '*.orig'|xargs rm find ${PREFIX}/pthreads/include -type f -print|xargs chmod 644 find ${PREFIX}/pthreads/include -type d -print|xargs chmod 755 |