Received: by mail.netbsd.org (Postfix, from userid 605) id 4611284DB9; Sat, 9 Sep 2017 15:17:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CDA3884DB6 for ; Sat, 9 Sep 2017 15:17:12 +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 9f_iAbyvTfzm for ; Sat, 9 Sep 2017 15:17:12 +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 5F58784CE2 for ; Sat, 9 Sep 2017 15:17:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 56045FA98; Sat, 9 Sep 2017 15:17:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150497023247980" MIME-Version: 1.0 Date: Sat, 9 Sep 2017 15:17:12 +0000 From: "David A. Holland" Subject: CVS commit: pkgsrc/cross/h8300-elf-gcc To: pkgsrc-changes@NetBSD.org Reply-To: dholland@netbsd.org X-Mailer: log_accum Message-Id: <20170909151712.56045FA98@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. --_----------=_150497023247980 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: dholland Date: Sat Sep 9 15:17:12 UTC 2017 Modified Files: pkgsrc/cross/h8300-elf-gcc: Makefile Log Message: shut up pkglint To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/cross/h8300-elf-gcc/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150497023247980 Content-Disposition: inline Content-Length: 1610 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/cross/h8300-elf-gcc/Makefile diff -u pkgsrc/cross/h8300-elf-gcc/Makefile:1.2 pkgsrc/cross/h8300-elf-gcc/Makefile:1.3 --- pkgsrc/cross/h8300-elf-gcc/Makefile:1.2 Mon Oct 24 22:34:19 2016 +++ pkgsrc/cross/h8300-elf-gcc/Makefile Sat Sep 9 15:17:12 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2016/10/24 22:34:19 ryoon Exp $ +# $NetBSD: Makefile,v 1.3 2017/09/09 15:17:12 dholland Exp $ DISTNAME= gcc-6.2.0 PKGNAME= cross-h8300-elf-${DISTNAME} @@ -8,13 +8,14 @@ MASTER_SITES= ${MASTER_SITE_GNU:=gcc/gc EXTRACT_SUFX= .tar.bz2 DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ newlib-${NEWLIBVER}.tar.gz -NEWLIBVER= 2.4.0 -SITES.newlib-${NEWLIBVER}.tar.gz= ftp://sources.redhat.com/pub/newlib/ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= #empty COMMENT= GCC compiler for h8300-elf +NEWLIBVER= 2.4.0 +SITES.newlib-${NEWLIBVER}.tar.gz= ftp://sources.redhat.com/pub/newlib/ + DEPENDS+= cross-h8300-elf-binutils-[0-9]*:../../cross/h8300-elf-binutils .include "../../mk/bsd.prefs.mk" @@ -41,9 +42,9 @@ CONFIGURE_ARGS+= --target=h8300-elf CONFIGURE_ARGS+= --enable-languages=c CONFIGURE_ARGS+= --with-newlib CONFIGURE_ARGS+= --disable-libstdcxx-pch -CONFIGURE_ARGS+= --with-gmp=${BUILDLINK_PREFIX.gmp} -CONFIGURE_ARGS+= --with-mpc=${BUILDLINK_PREFIX.mpcomplex} -CONFIGURE_ARGS+= --with-mpfr=${BUILDLINK_PREFIX.mpfr} +CONFIGURE_ARGS+= --with-gmp=${BUILDLINK_PREFIX.gmp} +CONFIGURE_ARGS+= --with-mpc=${BUILDLINK_PREFIX.mpcomplex} +CONFIGURE_ARGS+= --with-mpfr=${BUILDLINK_PREFIX.mpfr} MAKE_ENV+= SHELL=${CONFIG_SHELL} INFO_FILES= yes --_----------=_150497023247980--