Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2E1EB84CFE for ; Sat, 22 Jul 2023 09:59:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id v6ziXosjDk7y for ; Sat, 22 Jul 2023 09:59:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 7CAE984CCF for ; Sat, 22 Jul 2023 09:59:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 745EAFBDB; Sat, 22 Jul 2023 09:59:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169001999110910" MIME-Version: 1.0 Date: Sat, 22 Jul 2023 09:59:51 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/math/octave To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230722095951.745EAFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169001999110910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat Jul 22 09:59:51 UTC 2023 Modified Files: pkgsrc/math/octave: octave.mk Log Message: revert LOCALBASE in octave.mk To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/math/octave/octave.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169001999110910 Content-Disposition: inline Content-Length: 961 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/octave/octave.mk diff -u pkgsrc/math/octave/octave.mk:1.9 pkgsrc/math/octave/octave.mk:1.10 --- pkgsrc/math/octave/octave.mk:1.9 Sun Apr 12 21:19:32 2020 +++ pkgsrc/math/octave/octave.mk Sat Jul 22 09:59:51 2023 @@ -1,8 +1,8 @@ -# $NetBSD: octave.mk,v 1.9 2020/04/12 21:19:32 adam Exp $ +# $NetBSD: octave.mk,v 1.10 2023/07/22 09:59:51 adam Exp $ .include "../../mk/bsd.prefs.mk" -OCTAVE_CONFIG= ${PREFIX}/bin/octave-config +OCTAVE_CONFIG= ${LOCALBASE}/bin/octave-config # OCTAVE_VARS is a list of variables to define in the make environment. # This may be overridden in an octave add-on package Makefile. @@ -24,6 +24,6 @@ OCT_${var}!= ${OCTAVE_CONFIG} -p ${var} .if defined(REPLACE_OCTAVE) REPLACE_INTERPRETER+= octave REPLACE.octave.old= .*octave -REPLACE.octave.new= ${PREFIX}/bin/octave +REPLACE.octave.new= ${LOCALBASE}/bin/octave REPLACE_FILES.octave= ${REPLACE_OCTAVE} .endif # defined(REPLACE_OCTAVE) --_----------=_169001999110910--