Received: by mail.netbsd.org (Postfix, from userid 605) id 739DB84E34; Thu, 29 Aug 2019 11:55:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id ED09484E2B for ; Thu, 29 Aug 2019 11:55:37 +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 rbPyno9XCfYz for ; Thu, 29 Aug 2019 11:55:37 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 51EC184CE9 for ; Thu, 29 Aug 2019 11:55:37 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 49CA4FBF4; Thu, 29 Aug 2019 11:55:37 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_156707973756240" MIME-Version: 1.0 Date: Thu, 29 Aug 2019 11:55:37 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/emulators/openmsx To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20190829115537.49CA4FBF4@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. --_----------=_156707973756240 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu Aug 29 11:55:37 UTC 2019 Modified Files: pkgsrc/emulators/openmsx: Makefile Log Message: openmsx: Pass CXX override as make flag rather than in the environment. Seems to help avoid the wrath of the invalid compiler detector. To generate a diff of this commit: cvs rdiff -u -r1.56 -r1.57 pkgsrc/emulators/openmsx/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_156707973756240 Content-Disposition: inline Content-Length: 991 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/openmsx/Makefile diff -u pkgsrc/emulators/openmsx/Makefile:1.56 pkgsrc/emulators/openmsx/Makefile:1.57 --- pkgsrc/emulators/openmsx/Makefile:1.56 Tue Jul 2 08:31:02 2019 +++ pkgsrc/emulators/openmsx/Makefile Thu Aug 29 11:55:37 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.56 2019/07/02 08:31:02 nia Exp $ +# $NetBSD: Makefile,v 1.57 2019/08/29 11:55:37 nia Exp $ DISTNAME= openmsx-0.15.0 CATEGORIES= emulators @@ -41,12 +41,12 @@ GCC_REQD+= 5 .include "../../mk/bsd.prefs.mk" do-configure: -.if !empty(PKGSRC_COMPILER:Mclang) - cd ${WRKSRC} && ${CONFIGURE_ENV} CXX=clang++ \ - ${GMAKE} -f build/main.mk probe +.if !empty(PKGSRC_COMPILER:M*clang*) + cd ${WRKSRC} && ${CONFIGURE_ENV} \ + ${GMAKE} -f build/main.mk probe CXX=clang++ .else - cd ${WRKSRC} && ${CONFIGURE_ENV} CXX=g++ \ - ${GMAKE} -f build/main.mk probe + cd ${WRKSRC} && ${CONFIGURE_ENV} \ + ${GMAKE} -f build/main.mk probe CXX=g++ .endif post-extract: --_----------=_156707973756240--