Received: by mail.netbsd.org (Postfix, from userid 605) id 55CF684E25; Thu, 17 Oct 2019 16:05:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D375684E20 for ; Thu, 17 Oct 2019 16:05:06 +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 WPJGV9GOwqe7 for ; Thu, 17 Oct 2019 16:05:06 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3724784CDC for ; Thu, 17 Oct 2019 16:05:06 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2FF89FBF4; Thu, 17 Oct 2019 16:05:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1571328306152260" MIME-Version: 1.0 Date: Thu, 17 Oct 2019 16:05:06 +0000 From: "Havard Eidnes" Subject: CVS commit: pkgsrc/net/irrtoolset5 To: pkgsrc-changes@NetBSD.org Reply-To: he@netbsd.org X-Mailer: log_accum Message-Id: <20191017160506.2FF89FBF4@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. --_----------=_1571328306152260 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: he Date: Thu Oct 17 16:05:06 UTC 2019 Modified Files: pkgsrc/net/irrtoolset5: Makefile Log Message: Apparently, there is no need to run aclocal and automake, so remove those. USE_TOOLS still needs automake, though. Also turn down the verbosity of autoconf. Ride on previous update, though this is just a configure/build simplification. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/net/irrtoolset5/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1571328306152260 Content-Disposition: inline Content-Length: 986 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/irrtoolset5/Makefile diff -u pkgsrc/net/irrtoolset5/Makefile:1.11 pkgsrc/net/irrtoolset5/Makefile:1.12 --- pkgsrc/net/irrtoolset5/Makefile:1.11 Thu Oct 17 14:05:49 2019 +++ pkgsrc/net/irrtoolset5/Makefile Thu Oct 17 16:05:06 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2019/10/17 14:05:49 he Exp $ +# $NetBSD: Makefile,v 1.12 2019/10/17 16:05:06 he Exp $ VERSION= 5.1.2 DISTNAME= irrtoolset-${VERSION} @@ -22,16 +22,14 @@ MAKE_JOBS_SAFE= NO USE_LIBTOOL= yes GNU_CONFIGURE= yes USE_LANGUAGES= c c++ -USE_TOOLS+= aclocal automake autoconf bison flex +USE_TOOLS+= automake autoconf bison flex CONFIG_GUESS_OVERRIDE= config.guess CONFIG_SUB_OVERRIDE= config.sub pre-configure: - cd ${WRKSRC} && aclocal cd ${WRKSRC} && autoreconf --install - cd ${WRKSRC} && automake --add-missing - cd ${WRKSRC} && autoconf -v -i -f + cd ${WRKSRC} && autoconf -f .include "../../mk/readline.buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1571328306152260--