Received: by mail.netbsd.org (Postfix, from userid 605) id 6DD8284D43; Sun, 24 Nov 2019 01:14:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EA14184D37 for ; Sun, 24 Nov 2019 01:14:10 +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 9DEVYSQuAOoZ for ; Sun, 24 Nov 2019 01:14:10 +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 496E384C85 for ; Sun, 24 Nov 2019 01:14:10 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 436F4FA97; Sun, 24 Nov 2019 01:14:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157455805093370" MIME-Version: 1.0 Date: Sun, 24 Nov 2019 01:14:10 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/comms/asterisk16 To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20191124011410.436F4FA97@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. --_----------=_157455805093370 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Sun Nov 24 01:14:10 UTC 2019 Modified Files: pkgsrc/comms/asterisk16: Makefile Log Message: comms/asterisk16: Fix compiler check via pkglint AUTOFIX: Makefile:290: Replacing "${PKGSRC_COMPILER} == \"clang\"" with "${PKGSRC_COMPILER:Mclang}". The PKGSRC_COMPILER can be a list of chained compilers, e.g. "ccache distcc clang". Therefore, comparing it using == or != leads to wrong results in these cases. To generate a diff of this commit: cvs rdiff -u -r1.49 -r1.50 pkgsrc/comms/asterisk16/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157455805093370 Content-Disposition: inline Content-Length: 939 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/comms/asterisk16/Makefile diff -u pkgsrc/comms/asterisk16/Makefile:1.49 pkgsrc/comms/asterisk16/Makefile:1.50 --- pkgsrc/comms/asterisk16/Makefile:1.49 Sun Nov 3 12:04:12 2019 +++ pkgsrc/comms/asterisk16/Makefile Sun Nov 24 01:14:10 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.49 2019/11/03 12:04:12 rillig Exp $ +# $NetBSD: Makefile,v 1.50 2019/11/24 01:14:10 gdt Exp $ # # NOTE: when updating this package, there are two places that sound # tarballs need to be checked; look in ${WRKSRC}/sounds/Makefile @@ -287,7 +287,7 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/doc/IAX2-security.txt ${DESTDIR}${PREFIX}/share/doc/${PKGBASE} ${INSTALL_DATA} ${WRKSRC}/doc/README.txt ${DESTDIR}${PREFIX}/share/doc/${PKGBASE} -.if ${OPSYS} != "Darwin" && ${PKGSRC_COMPILER} == "clang" +.if ${OPSYS} != "Darwin" && ${PKGSRC_COMPILER:Mclang} .include "../../lang/libBlocksRuntime/buildlink3.mk" .endif --_----------=_157455805093370--