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 325987A2EC for ; Thu, 1 Dec 2016 21:57:45 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 9EDFA855A1; Thu, 1 Dec 2016 21:57:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2ECD58558D for ; Thu, 1 Dec 2016 21:57:44 +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 FBK-Rupw6P5L for ; Thu, 1 Dec 2016 21:57:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8B33384CF5 for ; Thu, 1 Dec 2016 21:57:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 84C6DFBA6; Thu, 1 Dec 2016 21:57:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1480629463216290" MIME-Version: 1.0 Date: Thu, 1 Dec 2016 21:57:43 +0000 From: "Sebastian Wiedenroth" Subject: CVS commit: pkgsrc/devel/nss To: pkgsrc-changes@NetBSD.org Reply-To: wiedi@netbsd.org X-Mailer: log_accum Message-Id: <20161201215743.84C6DFBA6@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. --_----------=_1480629463216290 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiedi Date: Thu Dec 1 21:57:43 UTC 2016 Modified Files: pkgsrc/devel/nss: Makefile Log Message: simplify installation of commandline utilities, fixes SunOS To generate a diff of this commit: cvs rdiff -u -r1.123 -r1.124 pkgsrc/devel/nss/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1480629463216290 Content-Disposition: inline Content-Length: 1340 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/nss/Makefile diff -u pkgsrc/devel/nss/Makefile:1.123 pkgsrc/devel/nss/Makefile:1.124 --- pkgsrc/devel/nss/Makefile:1.123 Tue Nov 29 22:51:12 2016 +++ pkgsrc/devel/nss/Makefile Thu Dec 1 21:57:43 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.123 2016/11/29 22:51:12 ryoon Exp $ +# $NetBSD: Makefile,v 1.124 2016/12/01 21:57:43 wiedi Exp $ DISTNAME= nss-${NSS_RELEASE:S/.0$//} NSS_RELEASE= 3.27.2 @@ -103,13 +103,6 @@ INSTALL_CMDS+= certcgi certutil cmsutil p7verify pk12util rsaperf shlibsign signtool signver \ ssltap strsclnt symkeyutil vfychain vfyserv -CMDS_DIR= ${OPSYS}${OS_VERSION}_OPT.OBJ -.for platform in ${LP64PLATFORMS} -. if ${MACHINE_PLATFORM:M${platform}} -CMDS_DIR= ${OPSYS}${OS_VERSION}_64_OPT.OBJ -. endif -.endfor - post-extract: find ${WRKSRC} -type f | xargs ${CHMOD} 644 find ${WRKSRC} -type d | xargs ${CHMOD} 755 @@ -125,8 +118,7 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/nss.pc ${DESTDIR}${PREFIX}/lib/pkgconfig/nss.pc ${INSTALL_SCRIPT} ${WRKSRC}/nss-config ${DESTDIR}${PREFIX}/bin/nss-config .for cmd in ${INSTALL_CMDS} - ${INSTALL_PROGRAM} ${WRKSRC}/dist/${CMDS_DIR}/bin/${cmd} \ - ${DESTDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${DIST}/*_OPT.OBJ/bin/${cmd} ${DESTDIR}${PREFIX}/bin .endfor # For consistency of libxul.so link in www/firefox. --_----------=_1480629463216290--