From patchwork Fri Jul 10 16:05:08 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vicente Olivert Riera X-Patchwork-Id: 493829 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 0E3341402C3 for ; Sat, 11 Jul 2015 02:07:38 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 4090C8C1EE; Fri, 10 Jul 2015 16:07:37 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id NC7xLrSZpVHx; Fri, 10 Jul 2015 16:07:36 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id ED47D8C1F1; Fri, 10 Jul 2015 16:07:35 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 99CBC1C0847 for ; Fri, 10 Jul 2015 16:07:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 9450C8C1EF for ; Fri, 10 Jul 2015 16:07:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id jiaqRaeAGV2R for ; Fri, 10 Jul 2015 16:07:31 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailapp01.imgtec.com (mailapp01.imgtec.com [195.59.15.196]) by whitealder.osuosl.org (Postfix) with ESMTP id C55558C1E0 for ; Fri, 10 Jul 2015 16:07:31 +0000 (UTC) Received: from KLMAIL01.kl.imgtec.org (unknown [192.168.5.35]) by Websense Email Security Gateway with ESMTPS id D2C36D30ADDC for ; Fri, 10 Jul 2015 17:07:27 +0100 (IST) Received: from LEMAIL01.le.imgtec.org (192.168.152.62) by KLMAIL01.kl.imgtec.org (192.168.5.35) with Microsoft SMTP Server (TLS) id 14.3.195.1; Fri, 10 Jul 2015 17:07:30 +0100 Received: from quad.carrosses.com (192.168.159.61) by LEMAIL01.le.imgtec.org (192.168.152.62) with Microsoft SMTP Server (TLS) id 14.3.210.2; Fri, 10 Jul 2015 17:07:30 +0100 From: Vicente Olivert Riera To: Date: Fri, 10 Jul 2015 18:05:08 +0200 Message-ID: <1436544308-22652-2-git-send-email-Vincent.Riera@imgtec.com> X-Mailer: git-send-email 2.3.6 In-Reply-To: <1436544308-22652-1-git-send-email-Vincent.Riera@imgtec.com> References: <1436544308-22652-1-git-send-email-Vincent.Riera@imgtec.com> MIME-Version: 1.0 X-Originating-IP: [192.168.159.61] Subject: [Buildroot] [PATCH 2/2] heimdal: disable parallel build X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" The commit 2fc8be39edd610623d322c71e42a06b535cbadb7 enabled parallel build, but this is causing build failures like this one: Making all in kadm5 make[3]: Entering directory `/home/test/autobuild/instance-0/output/build/host-heimdal-1.6rc2/lib/kadm5' compile_et kadm5_err.et compile_et kadm5_err.et CC ad.lo CC chpass_c.lo In file included from chpass_c.c:34: kadm5_locl.h:78:23: error: kadm5_err.h: No such file or directory The file 'kadm5_err.h' is a generated header which is being requested before being generated. Fixes: http://autobuild.buildroot.net/results/3a4/3a42c5b294a9a8602844ed1127ec5eadb60a6bed/ Signed-off-by: Vicente Olivert Riera --- package/heimdal/heimdal.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/heimdal/heimdal.mk b/package/heimdal/heimdal.mk index 19bca5e..8c2aa2b 100644 --- a/package/heimdal/heimdal.mk +++ b/package/heimdal/heimdal.mk @@ -24,6 +24,7 @@ HOST_HEIMDAL_CONF_OPTS = \ --without-x \ --disable-heimdal-documentation HOST_HEIMDAL_CONF_ENV = MAKEINFO=true +HEIMDAL_MAKE = $(MAKE1) HEIMDAL_LICENSE = BSD-3c HEIMDAL_LICENSE_FILES = LICENSE