Received: by mail.netbsd.org (Postfix, from userid 605) id 1E4C584D25; Mon, 24 Dec 2018 01:53:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1CB3284D21 for ; Mon, 24 Dec 2018 01:53:52 +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 05WNV4yizfnE for ; Mon, 24 Dec 2018 01:53:51 +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 4171484C85 for ; Mon, 24 Dec 2018 01:53:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 31448FB16; Mon, 24 Dec 2018 01:53:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1545616431129980" MIME-Version: 1.0 Date: Mon, 24 Dec 2018 01:53:51 +0000 From: "Izumi Tsutsui" Subject: CVS commit: pkgsrc/misc/raspberrypi-userland To: pkgsrc-changes@NetBSD.org Reply-To: tsutsui@netbsd.org X-Mailer: log_accum Message-Id: <20181224015351.31448FB16@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. --_----------=_1545616431129980 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tsutsui Date: Mon Dec 24 01:53:51 UTC 2018 Modified Files: pkgsrc/misc/raspberrypi-userland: Makefile Log Message: raspberrypi-userland: fix build errors on PKG_DEVELOPER=yes. PR pkg/53745 Bump PKGREVISION for the changed files and dependency change. Ok'ed by wiz@ To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/misc/raspberrypi-userland/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1545616431129980 Content-Disposition: inline Content-Length: 1068 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/misc/raspberrypi-userland/Makefile diff -u pkgsrc/misc/raspberrypi-userland/Makefile:1.12 pkgsrc/misc/raspberrypi-userland/Makefile:1.13 --- pkgsrc/misc/raspberrypi-userland/Makefile:1.12 Sun Jul 30 22:32:19 2017 +++ pkgsrc/misc/raspberrypi-userland/Makefile Mon Dec 24 01:53:51 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2017/07/30 22:32:19 wiz Exp $ +# $NetBSD: Makefile,v 1.13 2018/12/24 01:53:51 tsutsui Exp $ # DISTNAME= userland-20170109 @@ -22,6 +22,7 @@ USE_LANGUAGES= c c++ USE_CMAKE= yes CMAKE_ARGS+= -DCMAKE_TOOLCHAIN_FILE=${WRKSRC}/makefiles/cmake/toolchains/arm-netbsdelf.cmake +USE_TOOLS+= bash:run SUBST_CLASSES+= vc SUBST_STAGE.vc= pre-configure @@ -29,6 +30,10 @@ SUBST_MESSAGE.vc= Fixing hard-coded inst SUBST_FILES.vc= makefiles/cmake/vmcs.cmake SUBST_SED.vc= -e 's,/opt/vc,${PREFIX},g' +REPLACE_BASH+= buildme \ + host_applications/linux/apps/dtoverlay/dtoverlay-post \ + host_applications/linux/apps/dtoverlay/dtoverlay-pre + .include "options.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1545616431129980--