diff options
author | tron <tron@pkgsrc.org> | 1999-05-01 18:13:07 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-05-01 18:13:07 +0000 |
commit | 293ec7e4ba982ff41cdfa3eb496863a46d4ad30f (patch) | |
tree | bddaff26c77910e7cb1fae4fab469d929e635caa /devel/mit-pthreads | |
parent | c4743780446bb19219edc2bcbe73830a0d1b8733 (diff) | |
download | pkgsrc-293ec7e4ba982ff41cdfa3eb496863a46d4ad30f.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 |