Received: by mail.netbsd.org (Postfix, from userid 605) id F074D84F0A; Mon, 25 Apr 2022 15:43:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 35A0584F04 for ; Mon, 25 Apr 2022 15:43:13 +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 VgP3KoiPiyJt for ; Mon, 25 Apr 2022 15:43:12 +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 845DD84CFC for ; Mon, 25 Apr 2022 15:43:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 77C27FB1A; Mon, 25 Apr 2022 15:43:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_165090139253850" MIME-Version: 1.0 Date: Mon, 25 Apr 2022 15:43:12 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/devel/remake To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20220425154312.77C27FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_165090139253850 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Mon Apr 25 15:43:12 UTC 2022 Modified Files: pkgsrc/devel/remake: Makefile Log Message: remake: honour PKGINFODIR To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/remake/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_165090139253850 Content-Disposition: inline Content-Length: 1301 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/remake/Makefile diff -u pkgsrc/devel/remake/Makefile:1.4 pkgsrc/devel/remake/Makefile:1.5 --- pkgsrc/devel/remake/Makefile:1.4 Tue Apr 28 11:46:29 2020 +++ pkgsrc/devel/remake/Makefile Mon Apr 25 15:43:12 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2020/04/28 11:46:29 nikita Exp $ +# $NetBSD: Makefile,v 1.5 2022/04/25 15:43:12 tnn Exp $ DISTNAME= remake-4.2.1+dbg-1.4 CATEGORIES= devel @@ -24,13 +24,11 @@ CONFIGURE_ARGS= --without-guile # XXX: based on possible /dev/kmem permissions. CONFIGURE_ARGS+= ac_cv_func_getloadavg_setgid=no -AUTO_MKDIRS= yes - # \todo: patch upstream. post-install: - ${MV} ${DESTDIR}${PREFIX}/info/make.info ${DESTDIR}${PREFIX}/info/remake.info - ${MV} ${DESTDIR}${PREFIX}/info/make.info-1 ${DESTDIR}${PREFIX}/info/remake.info-1 - ${MV} ${DESTDIR}${PREFIX}/info/make.info-2 ${DESTDIR}${PREFIX}/info/remake.info-2 + ${MV} ${DESTDIR}${PREFIX}/${PKGINFODIR}/make.info ${DESTDIR}${PREFIX}/${PKGINFODIR}/remake.info + ${MV} ${DESTDIR}${PREFIX}/${PKGINFODIR}/make.info-1 ${DESTDIR}${PREFIX}/${PKGINFODIR}/remake.info-1 + ${MV} ${DESTDIR}${PREFIX}/${PKGINFODIR}/make.info-2 ${DESTDIR}${PREFIX}/${PKGINFODIR}/remake.info-2 # \todo: most of this package could probably be shorter if # gmake had a Makefile file to re-use. --_----------=_165090139253850--