diff options
author | jperkin <jperkin> | 2013-06-26 11:53:02 +0000 |
---|---|---|
committer | jperkin <jperkin> | 2013-06-26 11:53:02 +0000 |
commit | 91ad227f5d00f15c45670d4f682ae4e8cfca0203 (patch) | |
tree | 26c1e674c0591472ecea7ca4129af66f7adcc089 /lang/nodejs/Makefile | |
parent | e35090732229bacf2072773fa29064045793130f (diff) | |
download | pkgsrc-91ad227f5d00f15c45670d4f682ae4e8cfca0203.tar.gz |
Enforce using the system libtool on OSX. Fixes build + modules.
Diffstat (limited to 'lang/nodejs/Makefile')
-rw-r--r-- | lang/nodejs/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lang/nodejs/Makefile b/lang/nodejs/Makefile index fb3ba9025e7..8e2469f847b 100644 --- a/lang/nodejs/Makefile +++ b/lang/nodejs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2013/06/13 20:11:05 fhajny Exp $ +# $NetBSD: Makefile,v 1.7 2013/06/26 11:53:02 jperkin Exp $ # DISTNAME= node-v0.10.11 @@ -56,5 +56,9 @@ CHECK_INTERPRETER_SKIP+= lib/node_modules/npm/* .if ${OPSYS} == "NetBSD" BUILD_DEPENDS+= lockf-[0-9]*:../../sysutils/lockf .endif + +pre-install: + ${FIND} ${WRKSRC}/deps/npm -name '*.orig' | ${XARGS} ${RM} -f + .include "../../lang/python/application.mk" .include "../../mk/bsd.pkg.mk" |