Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 487281A9239 for ; Fri, 26 Nov 2021 17:41:42 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 5B53484D61; Fri, 26 Nov 2021 17:41:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9560784CFC for ; Fri, 26 Nov 2021 17:41:40 +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 MEuPI3swCrto for ; Fri, 26 Nov 2021 17:41:40 +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 E470184CD9 for ; Fri, 26 Nov 2021 17:41:39 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DD821FAEC; Fri, 26 Nov 2021 17:41:39 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1637948499267620" MIME-Version: 1.0 Date: Fri, 26 Nov 2021 17:41:39 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/emulators/BasiliskII To: pkgsrc-changes@NetBSD.org Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20211126174139.DD821FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1637948499267620 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Fri Nov 26 17:41:39 UTC 2021 Modified Files: pkgsrc/emulators/BasiliskII: Makefile Log Message: Fix a build failure regarding missing config.rpath > configure: error: cannot find required auxiliary files: config.rpath config.rpath is installed by gettextize but src/Unix/autogen.sh doesn't invoke it for some reason. autoreconf takes care of that so just use it in place of the hand-rolled script. To generate a diff of this commit: cvs rdiff -u -r1.48 -r1.49 pkgsrc/emulators/BasiliskII/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1637948499267620 Content-Disposition: inline Content-Length: 983 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/BasiliskII/Makefile diff -u pkgsrc/emulators/BasiliskII/Makefile:1.48 pkgsrc/emulators/BasiliskII/Makefile:1.49 --- pkgsrc/emulators/BasiliskII/Makefile:1.48 Thu Jan 14 02:47:39 2021 +++ pkgsrc/emulators/BasiliskII/Makefile Fri Nov 26 17:41:39 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.48 2021/01/14 02:47:39 nat Exp $ +# $NetBSD: Makefile,v 1.49 2021/11/26 17:41:39 pho Exp $ DISTNAME= BasiliskII-20190405 PKGREVISION= 4 @@ -17,7 +17,7 @@ CONFIGURE_DIRS= src/Unix BUILD_DIRS= src/Unix USE_LANGUAGES= c c++ -USE_TOOLS+= aclocal autoheader autoconf automake +USE_TOOLS+= aclocal autoheader autoconf automake autoreconf USE_TOOLS+= msgfmt msgmerge xgettext USE_TOOLS+= pkg-config gmake @@ -48,7 +48,7 @@ post-extract: INSTALLATION_DIRS= share/doc/BasiliskII pre-configure: - cd ${WRKSRC}/src/Unix && NO_CONFIGURE=x ./autogen.sh + cd ${WRKSRC}/src/Unix && autoreconf -I m4 ${MKDIR} ${WRKSRC}/src/Unix/obj post-install: --_----------=_1637948499267620--