Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id CCF517A213 for ; Wed, 20 Jul 2016 12:04:16 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 8095586041; Wed, 20 Jul 2016 12:04:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0E27C85EA2 for ; Wed, 20 Jul 2016 12:04:16 +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 abZboCBU8IHG for ; Wed, 20 Jul 2016 12:04:15 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 7125885E81 for ; Wed, 20 Jul 2016 12:04:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6C3EBFBB5; Wed, 20 Jul 2016 12:04:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1469016255150710" MIME-Version: 1.0 Date: Wed, 20 Jul 2016 12:04:15 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/autogen To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20160720120415.6C3EBFBB5@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1469016255150710 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Jul 20 12:04:15 UTC 2016 Modified Files: pkgsrc/devel/autogen: Makefile Log Message: Use TOOLS_PATH.bash for finding bash. Hopefully helps with built-in bash. To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 pkgsrc/devel/autogen/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1469016255150710 Content-Disposition: inline Content-Length: 765 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/autogen/Makefile diff -u pkgsrc/devel/autogen/Makefile:1.41 pkgsrc/devel/autogen/Makefile:1.42 --- pkgsrc/devel/autogen/Makefile:1.41 Sat Jul 16 20:00:14 2016 +++ pkgsrc/devel/autogen/Makefile Wed Jul 20 12:04:15 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2016/07/16 20:00:14 wiz Exp $ +# $NetBSD: Makefile,v 1.42 2016/07/20 12:04:15 wiz Exp $ DISTNAME= autogen-5.18.10 CATEGORIES= devel @@ -16,8 +16,8 @@ USE_LIBTOOL= yes INFO_FILES= yes # embedded in some installed tools -CONFIGURE_ENV+= POSIX_SHELL=${PREFIX}/bin/bash -CONFIG_SHELL= ${PREFIX}/bin/bash +CONFIG_SHELL= ${TOOLS_PATH.bash} +CONFIGURE_ENV+= POSIX_SHELL=${CONFIG_SHELL:Q} MAKE_ENV+= PERL5=${PERL5} .include "../../lang/guile20/buildlink3.mk" --_----------=_1469016255150710--