From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from eddie.linux-mips.org ([148.251.95.138] helo=cvs.linux-mips.org) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1jrHIP-00042R-LN for ptxdist@pengutronix.de; Fri, 03 Jul 2020 10:43:46 +0200 Received: (from localhost user: 'ladis' uid#1021 fake: STDIN (ladis@eddie.linux-mips.org)) by eddie.linux-mips.org id S23991811AbgGCInnSIF7P (ORCPT ); Fri, 3 Jul 2020 10:43:43 +0200 Date: Fri, 3 Jul 2020 10:43:42 +0200 From: ladis@linux-mips.org Message-ID: <20200703084342.GA154165@lenoch> MIME-Version: 1.0 Content-Disposition: inline Subject: [ptxdist] [PATCH] host-libcap: disable go binding List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ptxdist-bounces@pengutronix.de Sender: "ptxdist" To: ptxdist@pengutronix.de It is not needed and saves compilation time. Signed-off-by: Ladislav Michl --- Hi, to be honest, the true motivation for this patch is: make[1]: Leaving directory '.../build-host/libcap-2.36/libcap' make -C go all make[1]: Entering directory '.../build-host/libcap-2.36/go' mkdir -p src/libcap make[1]: *** No rule to make target 'src/libcap/psx/psx.go', needed by 'pkg/linux_amd64/libcap/psx.a'. Stop. I'm not sure what problem on Debian unstable is, so let's disable golang support. rules/host-libcap.make | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/rules/host-libcap.make b/rules/host-libcap.make index 61df84778..d92882a16 100644 --- a/rules/host-libcap.make +++ b/rules/host-libcap.make @@ -16,7 +16,12 @@ HOST_PACKAGES-$(PTXCONF_HOST_LIBCAP) += host-libcap # Prepare # ---------------------------------------------------------------------------- -HOST_LIBCAP_MAKE_OPT := prefix= BUILD_GPERF=no PAM_CAP=no LIBATTR=no DYNAMIC=yes lib=lib +HOST_LIBCAP_MAKE_OPT := prefix= lib=lib \ + BUILD_GPERF=no \ + PAM_CAP=no \ + GOLANG=no \ + LIBATTR=no \ + DYNAMIC=yes HOST_LIBCAP_INSTALL_OPT := $(HOST_LIBCAP_MAKE_OPT) RAISE_SETFCAP=no install # vim: syntax=make -- 2.27.0 _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de