diff options
author | agc <agc@pkgsrc.org> | 1997-11-13 14:47:23 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1997-11-13 14:47:23 +0000 |
commit | 0210b86a15d1791544434814a8a2cf3a71a2d82d (patch) | |
tree | 5c7226570f2904822fdb0b36570719445551e771 /devel/mit-pthreads | |
parent | d3a1cfd8e35e6604ab4811d7664558d3054222c0 (diff) | |
download | pkgsrc-0210b86a15d1791544434814a8a2cf3a71a2d82d.tar.gz |
Add pre-install step to make the ${PREFIX}/pthreads directory.
Diffstat (limited to 'devel/mit-pthreads')
-rw-r--r-- | devel/mit-pthreads/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/devel/mit-pthreads/Makefile b/devel/mit-pthreads/Makefile index ffc895373ba..4200437c78e 100644 --- a/devel/mit-pthreads/Makefile +++ b/devel/mit-pthreads/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 1997/10/13 11:36:19 agc Exp $ +# $NetBSD: Makefile,v 1.3 1997/11/13 14:47:23 agc Exp $ # New ports collection makefile for: MIT pthreads # Version required: 1.60beta6 # Date created: 10th October 1997 @@ -13,6 +13,9 @@ MASTER_SITES= ftp://sipb.mit.edu/pub/pthreads/ HAS_CONFIGURE= yes CONFIGURE_ARGS+= --prefix=${PREFIX}/pthreads +pre-install: + mkdir ${PREFIX}/pthreads + post-install: find ${PREFIX}/pthreads/include -type f -print|xargs chmod 644 find ${PREFIX}/pthreads/include -type d -print|xargs chmod 755 |