From owner-svn-ports-head@freebsd.org Tue Mar 16 21:09:34 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A7B6F56DA64; Tue, 16 Mar 2021 21:09:34 +0000 (UTC) (envelope-from otis@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F0QsB4NXwz3QgX; Tue, 16 Mar 2021 21:09:34 +0000 (UTC) (envelope-from otis@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 890322A6C5; Tue, 16 Mar 2021 21:09:34 +0000 (UTC) (envelope-from otis@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 12GL9YHC060169; Tue, 16 Mar 2021 21:09:34 GMT (envelope-from otis@FreeBSD.org) Received: (from otis@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 12GL9YsB060168; Tue, 16 Mar 2021 21:09:34 GMT (envelope-from otis@FreeBSD.org) Message-Id: <202103162109.12GL9YsB060168@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: otis set sender to otis@FreeBSD.org using -f From: Juraj Lutter Date: Tue, 16 Mar 2021 21:09:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r568614 - head/textproc/node-re2 X-SVN-Group: ports-head X-SVN-Commit-Author: otis X-SVN-Commit-Paths: head/textproc/node-re2 X-SVN-Commit-Revision: 568614 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Mar 2021 21:09:34 -0000 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})