Received: by mail.netbsd.org (Postfix, from userid 605) id 9904D84D41; Sun, 22 Apr 2018 17:57:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9B1B284CEF for ; Sun, 22 Apr 2018 17:57:48 +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 oRHa4M9kEfyb for ; Sun, 22 Apr 2018 17:57:48 +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 C635484C85 for ; Sun, 22 Apr 2018 17:57:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BFB41FBEC; Sun, 22 Apr 2018 17:57:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1524419867176040" MIME-Version: 1.0 Date: Sun, 22 Apr 2018 17:57:47 +0000 From: "Matthias Scheler" Subject: CVS commit: pkgsrc/sysutils/cdrtools To: pkgsrc-changes@NetBSD.org Reply-To: tron@netbsd.org X-Mailer: log_accum Message-Id: <20180422175747.BFB41FBEC@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. --_----------=_1524419867176040 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tron Date: Sun Apr 22 17:57:47 UTC 2018 Modified Files: pkgsrc/sysutils/cdrtools: Makefile Log Message: cdrtools: Fix build under macOS (High Sierra) Create 64bit clang rules file by copying the 32bit file. The compiler defaults to 64bit binaries under modern version of macOS/Xcode anyway. To generate a diff of this commit: cvs rdiff -u -r1.115 -r1.116 pkgsrc/sysutils/cdrtools/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1524419867176040 Content-Disposition: inline Content-Length: 759 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/cdrtools/Makefile diff -u pkgsrc/sysutils/cdrtools/Makefile:1.115 pkgsrc/sysutils/cdrtools/Makefile:1.116 --- pkgsrc/sysutils/cdrtools/Makefile:1.115 Wed Jan 31 10:20:26 2018 +++ pkgsrc/sysutils/cdrtools/Makefile Sun Apr 22 17:57:47 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.115 2018/01/31 10:20:26 jperkin Exp $ +# $NetBSD: Makefile,v 1.116 2018/04/22 17:57:47 tron Exp $ DISTNAME= cdrtools-3.01 PKGNAME= ${DISTNAME:S/a/alpha/:S/-pre/pre/} @@ -107,6 +107,7 @@ do-configure: ln -sf i386-$$suffix ${MACHINE}-$$suffix; \ fi; \ done; \ + $(CP) -fp i386-darwin-clang.rul x86_64-darwin-clang.rul cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${MAKE_PROGRAM} ${MAKE_FLAGS} config post-build: --_----------=_1524419867176040--