Received: by mail.netbsd.org (Postfix, from userid 605) id D56BA85697; Thu, 6 Jul 2017 14:11:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6528484DA0 for ; Thu, 6 Jul 2017 14:11:30 +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 3gKf8L4gYRH1 for ; Thu, 6 Jul 2017 14:11:30 +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 C51A284CDC for ; Thu, 6 Jul 2017 14:11:29 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C00FFFAE8; Thu, 6 Jul 2017 14:11:29 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_149935028988990" MIME-Version: 1.0 Date: Thu, 6 Jul 2017 14:11:29 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/archivers/lz4json To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20170706141129.C00FFFAE8@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. --_----------=_149935028988990 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Jul 6 14:11:29 UTC 2017 Modified Files: pkgsrc/archivers/lz4json: Makefile Log Message: Honor LDFLAGS. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/archivers/lz4json/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_149935028988990 Content-Disposition: inline Content-Length: 869 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/archivers/lz4json/Makefile diff -u pkgsrc/archivers/lz4json/Makefile:1.1 pkgsrc/archivers/lz4json/Makefile:1.2 --- pkgsrc/archivers/lz4json/Makefile:1.1 Mon Sep 19 08:02:11 2016 +++ pkgsrc/archivers/lz4json/Makefile Thu Jul 6 14:11:29 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2016/09/19 08:02:11 wiz Exp $ +# $NetBSD: Makefile,v 1.2 2017/07/06 14:11:29 wiz Exp $ DISTNAME= lz4json-0.0.20160401 CATEGORIES= archivers www @@ -15,7 +15,7 @@ USE_TOOLS+= pkg-config INSTALLATION_DIRS= bin do-build: - cd ${WRKSRC} && ${CC} ${CFLAGS} lz4jsoncat.c -o lz4jsoncat `pkg-config --libs liblz4` `pkg-config --cflags liblz4` + cd ${WRKSRC} && ${CC} ${CFLAGS} ${LDFLAGS} lz4jsoncat.c -o lz4jsoncat `pkg-config --libs liblz4` `pkg-config --cflags liblz4` do-install: ${INSTALL_PROGRAM} ${WRKSRC}/lz4jsoncat ${DESTDIR}${PREFIX}/bin --_----------=_149935028988990--