Received: by mail.netbsd.org (Postfix, from userid 605) id B4A3B84E44; Sun, 23 Feb 2020 20:24:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3F76984E3A for ; Sun, 23 Feb 2020 20:24:47 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id F-m2Ge5FX5Rb for ; Sun, 23 Feb 2020 20:24:46 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9B9DE84D5A for ; Sun, 23 Feb 2020 20:24:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 95600FBF4; Sun, 23 Feb 2020 20:24:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1582489486298010" MIME-Version: 1.0 Date: Sun, 23 Feb 2020 20:24:46 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/mk/configure To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20200223202446.95600FBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1582489486298010 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Sun Feb 23 20:24:46 UTC 2020 Modified Files: pkgsrc/mk/configure: configure.mk Log Message: mk/configure: fix configure-env to cd to the correct directory The previous "cd ${d}" had been a left-over from the .for loop around CONFIGURE_DIRS. To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 pkgsrc/mk/configure/configure.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1582489486298010 Content-Disposition: inline Content-Length: 766 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/configure/configure.mk diff -u pkgsrc/mk/configure/configure.mk:1.30 pkgsrc/mk/configure/configure.mk:1.31 --- pkgsrc/mk/configure/configure.mk:1.30 Sun Feb 9 20:33:39 2020 +++ pkgsrc/mk/configure/configure.mk Sun Feb 23 20:24:46 2020 @@ -1,4 +1,4 @@ -# $NetBSD: configure.mk,v 1.30 2020/02/09 20:33:39 rillig Exp $ +# $NetBSD: configure.mk,v 1.31 2020/02/23 20:24:46 rillig Exp $ # # = Package-settable variables = # @@ -312,6 +312,6 @@ _configure-env: .PHONY wrapper @${ECHO_MSG} "The CONFIGURE_DIRS are:" \ ${CONFIGURE_DIRS:S,^${WRKSRC}$,.,:S,^${WRKSRC}/,,:Q} .endif - ${RUN} cd ${WRKSRC} && cd ${d} \ + ${RUN} cd ${WRKSRC} \ && ${PKGSRC_SETENV} ${_CONFIGURE_SCRIPT_ENV} \ ${CONFIGURE_ENV_SHELL:U${CONFIG_SHELL}} --_----------=_1582489486298010--