Received: by mail.netbsd.org (Postfix, from userid 605) id 686CA84D5F; Wed, 12 Jul 2017 12:20:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F04E384D55 for ; Wed, 12 Jul 2017 12:20:28 +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 BMJJ6BCkQcRq for ; Wed, 12 Jul 2017 12:20:28 +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 5EAA784CE4 for ; Wed, 12 Jul 2017 12:20:28 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5A04CFACB; Wed, 12 Jul 2017 12:20:28 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1499862028244540" MIME-Version: 1.0 Date: Wed, 12 Jul 2017 12:20:28 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/emulators/cmdpack To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20170712122028.5A04CFACB@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. --_----------=_1499862028244540 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Jul 12 12:20:28 UTC 2017 Modified Files: pkgsrc/emulators/cmdpack: Makefile Log Message: Honor CFLAGS and LDFLAGS. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/emulators/cmdpack/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1499862028244540 Content-Disposition: inline Content-Length: 862 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/cmdpack/Makefile diff -u pkgsrc/emulators/cmdpack/Makefile:1.5 pkgsrc/emulators/cmdpack/Makefile:1.6 --- pkgsrc/emulators/cmdpack/Makefile:1.5 Wed Mar 4 05:53:52 2015 +++ pkgsrc/emulators/cmdpack/Makefile Wed Jul 12 12:20:28 2017 @@ -1,5 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2015/03/04 05:53:52 snj Exp $ -# +# $NetBSD: Makefile,v 1.6 2017/07/12 12:20:28 wiz Exp $ DISTNAME= cmdpack-1.03-src PKGNAME= ${DISTNAME:S/-src//} @@ -18,7 +17,7 @@ INSTALLATION_DIRS= bin share/doc/cmdpack do-build: cd ${WRKSRC}/src && \ for file in bin2iso bincomp brrrip byteshuf byteswap cdpatch ecm fakecrc hax65816 id3point pecompat rels screamf subfile uips usfv vb2rip wordadd zerofill; do \ - ${CC} -o $$file $$file.c; \ + ${CC} ${CFLAGS} ${LDFLAGS} -o $$file $$file.c; \ done ${LN} ${WRKSRC}/src/ecm ${WRKSRC}/src/unecm --_----------=_1499862028244540--