Received: by mail.netbsd.org (Postfix, from userid 605) id 6699484DCC; Mon, 12 Mar 2018 19:13:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B17B484D8A for ; Mon, 12 Mar 2018 19:13:54 +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 z8A5nAdXrZze for ; Mon, 12 Mar 2018 19:13:54 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E9CA184D04 for ; Mon, 12 Mar 2018 19:13:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E4841FB40; Mon, 12 Mar 2018 19:13:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1520882033265960" MIME-Version: 1.0 Date: Mon, 12 Mar 2018 19:13:53 +0000 From: "Benny Siegert" Subject: CVS commit: pkgsrc/fonts/fontconfig To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20180312191353.E4841FB40@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. --_----------=_1520882033265960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Mon Mar 12 19:13:53 UTC 2018 Modified Files: pkgsrc/fonts/fontconfig: Makefile Log Message: Fix inverted logic for the conditional uuid dependency. The buildlink3.mk should be included for OSes _except_ Darwin. The proper fix for this would be to have a devel/libuuid/builtin.mk that detects builtinness. To generate a diff of this commit: cvs rdiff -u -r1.106 -r1.107 pkgsrc/fonts/fontconfig/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1520882033265960 Content-Disposition: inline Content-Length: 747 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/fonts/fontconfig/Makefile diff -u pkgsrc/fonts/fontconfig/Makefile:1.106 pkgsrc/fonts/fontconfig/Makefile:1.107 --- pkgsrc/fonts/fontconfig/Makefile:1.106 Mon Mar 12 11:44:52 2018 +++ pkgsrc/fonts/fontconfig/Makefile Mon Mar 12 19:13:53 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.106 2018/03/12 11:44:52 adam Exp $ +# $NetBSD: Makefile,v 1.107 2018/03/12 19:13:53 bsiegert Exp $ DISTNAME= fontconfig-2.13.0 CATEGORIES= fonts @@ -96,7 +96,7 @@ LDFLAGS+= -L../src/.libs post-install: ${INSTALL_DATA} ${FILESDIR}/30-pkgsrc-aliases.conf ${DESTDIR}${TMPLDIR} -.if ${OPSYS} == "Darwin" +.if ${OPSYS} != "Darwin" .include "../../devel/libuuid/buildlink3.mk" .endif .include "../../devel/zlib/buildlink3.mk" --_----------=_1520882033265960--