Received: by mail.netbsd.org (Postfix, from userid 605) id D9D3D84DDE; Sat, 15 Jul 2017 19:10:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6CB6E84DA3 for ; Sat, 15 Jul 2017 19:10:32 +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 eB7-UxXt7bzi for ; Sat, 15 Jul 2017 19:10:32 +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 00F4B84CE4 for ; Sat, 15 Jul 2017 19:10:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EFD9CFACC; Sat, 15 Jul 2017 19:10:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1500145831148850" MIME-Version: 1.0 Date: Sat, 15 Jul 2017 19:10:31 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/x11/wxGTK30 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20170715191031.EFD9CFACC@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. --_----------=_1500145831148850 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Jul 15 19:10:31 UTC 2017 Modified Files: pkgsrc/x11/wxGTK30: Makefile hacks.mk Log Message: Fix pkglint warnings. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 pkgsrc/x11/wxGTK30/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/x11/wxGTK30/hacks.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1500145831148850 Content-Disposition: inline Content-Length: 1450 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/wxGTK30/Makefile diff -u pkgsrc/x11/wxGTK30/Makefile:1.20 pkgsrc/x11/wxGTK30/Makefile:1.21 --- pkgsrc/x11/wxGTK30/Makefile:1.20 Sun Feb 12 06:25:00 2017 +++ pkgsrc/x11/wxGTK30/Makefile Sat Jul 15 19:10:31 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2017/02/12 06:25:00 ryoon Exp $ +# $NetBSD: Makefile,v 1.21 2017/07/15 19:10:31 wiz Exp $ VERSION= 3.0.2 PKGREVISION= 10 @@ -76,7 +76,7 @@ CONFIGURE_ARGS+= --with-gtk=2 CONFIGURE_ARGS.SunOS+= --disable-xlocale post-configure: - echo 'install_qadll: install_xmldll' >> ${WRKSRC}/Makefile + ${ECHO} 'install_qadll: install_xmldll' >> ${WRKSRC}/Makefile post-build: set -e; cd ${WRKSRC}/locale; \ Index: pkgsrc/x11/wxGTK30/hacks.mk diff -u pkgsrc/x11/wxGTK30/hacks.mk:1.5 pkgsrc/x11/wxGTK30/hacks.mk:1.6 --- pkgsrc/x11/wxGTK30/hacks.mk:1.5 Sat Aug 20 13:19:21 2016 +++ pkgsrc/x11/wxGTK30/hacks.mk Sat Jul 15 19:10:31 2017 @@ -1,10 +1,10 @@ -# $NetBSD: hacks.mk,v 1.5 2016/08/20 13:19:21 gdt Exp $ +# $NetBSD: hacks.mk,v 1.6 2017/07/15 19:10:31 wiz Exp $ ### [Mon Dec 14 16:58:00 MET 2015 : bouyer ] ### g++-4.8 on NetBSD/i386 fails with an internal compiler error ### when PCH is used. Be conservative and disable on all MACHINE_ARCH -### -.if ${OPSYS} == "NetBSD" +### +.if ${OPSYS} == "NetBSD" . include "../../mk/compiler.mk" . if !empty(PKGSRC_COMPILER:Mgcc) && \ (!empty(CC_VERSION:Mgcc-4.8.*) || !empty(CC_VERSION:Mgcc-5.*)) --_----------=_1500145831148850--