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 7D3597A1FE for ; Fri, 10 Feb 2017 19:59:52 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id EB35685641; Fri, 10 Feb 2017 19:59:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7BED98556C for ; Fri, 10 Feb 2017 19:59:51 +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 iebogPdNZoBv for ; Fri, 10 Feb 2017 19:59:51 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id DF9A784CE3 for ; Fri, 10 Feb 2017 19:59:50 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D64A8FBE3; Fri, 10 Feb 2017 19:59:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1486756790232580" MIME-Version: 1.0 Date: Fri, 10 Feb 2017 19:59:50 +0000 From: "Min Sik Kim" Subject: CVS commit: pkgsrc/devel/gperftools To: pkgsrc-changes@NetBSD.org Reply-To: minskim@netbsd.org X-Mailer: log_accum Message-Id: <20170210195950.D64A8FBE3@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. --_----------=_1486756790232580 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: minskim Date: Fri Feb 10 19:59:50 UTC 2017 Modified Files: pkgsrc/devel/gperftools: Makefile Log Message: Correct directory name of gperftools docs To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/gperftools/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1486756790232580 Content-Disposition: inline Content-Length: 842 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/gperftools/Makefile diff -u pkgsrc/devel/gperftools/Makefile:1.5 pkgsrc/devel/gperftools/Makefile:1.6 --- pkgsrc/devel/gperftools/Makefile:1.5 Sat Jul 9 06:38:08 2016 +++ pkgsrc/devel/gperftools/Makefile Fri Feb 10 19:59:50 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2016/07/09 06:38:08 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2017/02/10 19:59:50 minskim Exp $ DISTNAME= gperftools-2.4 PKGREVISION= 2 @@ -23,7 +23,7 @@ CONFIGURE_ARGS+= --enable-frame-pointers .if ${OPSYS} == "Darwin" post-install: - ${INSTALL_DATA} ${WRKSRC}/doc/heap_checker.html ${DESTDIR}${PREFIX}/share/doc/${PKGNAME}/heap_checker.html + ${INSTALL_DATA} ${WRKSRC}/doc/heap_checker.html ${DESTDIR}${PREFIX}/share/doc/${PKGNAME_NOREV}/heap_checker.html .endif # http://code.google.com/p/gperftools/issues/detail?id=609 --_----------=_1486756790232580--