Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id A29A17A220 for ; Sat, 1 Apr 2017 17:32:49 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 4C9D98562E; Sat, 1 Apr 2017 17:32:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5880585641 for ; Sat, 1 Apr 2017 17:32: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 yb14tA7a9sEA for ; Sat, 1 Apr 2017 17:32:48 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B5B9385636 for ; Sat, 1 Apr 2017 17:32:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B03B5FBE4; Sat, 1 Apr 2017 17:32:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1491067967166510" MIME-Version: 1.0 Date: Sat, 1 Apr 2017 17:32:47 +0000 From: "Alistair G. Crooks" Subject: CVS commit: pkgsrc/security/bearssl To: pkgsrc-changes@NetBSD.org Reply-To: agc@netbsd.org X-Mailer: log_accum Message-Id: <20170401173247.B03B5FBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1491067967166510 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: agc Date: Sat Apr 1 17:32:47 UTC 2017 Modified Files: pkgsrc/security/bearssl: Makefile Log Message: Install the brssl utility program as an executable, not data To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/bearssl/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1491067967166510 Content-Disposition: inline Content-Length: 741 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/bearssl/Makefile diff -u pkgsrc/security/bearssl/Makefile:1.1 pkgsrc/security/bearssl/Makefile:1.2 --- pkgsrc/security/bearssl/Makefile:1.1 Sat Apr 1 17:01:51 2017 +++ pkgsrc/security/bearssl/Makefile Sat Apr 1 17:32:47 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2017/04/01 17:01:51 wiz Exp $ +# $NetBSD: Makefile,v 1.2 2017/04/01 17:32:47 agc Exp $ DISTNAME= bearssl-0.3 CATEGORIES= security @@ -13,7 +13,7 @@ INSTALLATION_DIRS= bin include lib do-install: cd ${WRKSRC}/build && \ - ${INSTALL_DATA} brssl ${DESTDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} brssl ${DESTDIR}${PREFIX}/bin cd ${WRKSRC}/inc && \ ${INSTALL_DATA} *.h ${DESTDIR}${PREFIX}/include cd ${WRKSRC}/build && \ --_----------=_1491067967166510--