Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Mar 2021 21:09:34 +0000 (UTC)
From:      Juraj Lutter <otis@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r568614 - head/textproc/node-re2
Message-ID:  <202103162109.12GL9YsB060168@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: otis
Date: Tue Mar 16 21:09:34 2021
New Revision: 568614
URL: https://svnweb.freebsd.org/changeset/ports/568614

Log:
  textproc/node-re2: Do not build with explicit NODE_PATH
  
  After r568613, explicit NODE_PATH is not needed.
  
  Reviewed by:	osa
  Approved by:	osa1
  Differential Revision:	https://reviews.freebsd.org/D29287

Modified:
  head/textproc/node-re2/Makefile

Modified: head/textproc/node-re2/Makefile
==============================================================================
--- head/textproc/node-re2/Makefile	Tue Mar 16 21:08:20 2021	(r568613)
+++ head/textproc/node-re2/Makefile	Tue Mar 16 21:09:34 2021	(r568614)
@@ -45,13 +45,13 @@ pre-configure:
 
 do-configure:
 	(cd ${WRKSRC} && \
-		${SETENV} HOME=${WRKDIR} NODE_PATH=${LOCALBASE}/lib/node_modules/npm/node_modules \
+		${SETENV} HOME=${WRKDIR} \
 		${LOCALBASE}/bin/node-gyp configure --python=${PYTHON_CMD} \
 		--devdir=${_DEVDIR})
 
 do-build:
 	(cd ${WRKSRC} && \
-		${SETENV} HOME=${WRKDIR} NODE_PATH=${LOCALBASE}/lib/node_modules/npm/node_modules \
+		${SETENV} HOME=${WRKDIR} \
 		${LOCALBASE}/bin/node-gyp build \
 		--devdir=${_DEVDIR})
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103162109.12GL9YsB060168>