From patchwork Mon May 5 13:24:07 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Hadjinlian X-Patchwork-Id: 345722 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 286CA140307 for ; Mon, 5 May 2014 23:24:18 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 5F12985792; Mon, 5 May 2014 13:24:17 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lVIGSm8AhbtI; Mon, 5 May 2014 13:24:17 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id DDC93859E9; Mon, 5 May 2014 13:24:16 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 09DF61C0B81 for ; Mon, 5 May 2014 13:24:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 02CC931909 for ; Mon, 5 May 2014 13:24:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Vq84wtQ-cb7D for ; Mon, 5 May 2014 13:24:15 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-we0-f173.google.com (mail-we0-f173.google.com [74.125.82.173]) by silver.osuosl.org (Postfix) with ESMTPS id 3E8183170F for ; Mon, 5 May 2014 13:24:15 +0000 (UTC) Received: by mail-we0-f173.google.com with SMTP id u57so970212wes.32 for ; Mon, 05 May 2014 06:24:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=d/CJofIIBTdqNZVFcZFHmfxKbjRjBJ/huBSApltd/zM=; b=dTRk7VjFT6cmicfp1oRUuzTBMs0JIPlqS3SwE6oRE2ABgvHtl+cIiRKxcDA+a6YwrQ gKw515bcjZqLKqgRVuzu+deQaL6OjJgBX32II32d0g1AZ6qRFMPo4vorvbZN+Bp1rCFH j47h7DeI0tX9FF68mjyFPehAgGIchcWdQh4ZZBizSluAmEsLENxsUviiJQ9kZ6CNYlgK X/oWpPeqbGM/v4ltmKDt0cnCF6b+drPUxgE/XODa+qLR8hsvLf2LHjknXz1HeUzNxBcR iDnYAKZ85V3r5+y1mO2ZwwTm6NwHTY6JCmS6oakduSetGl2FUbEl9qsM8c2DK59GkVzT 61Sg== X-Received: by 10.194.84.101 with SMTP id x5mr2251309wjy.52.1399296253610; Mon, 05 May 2014 06:24:13 -0700 (PDT) Received: from localhost (gut75-3-82-227-163-94.fbx.proxad.net. [82.227.163.94]) by mx.google.com with ESMTPSA id dg7sm17005624wjc.4.2014.05.05.06.24.12 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Mon, 05 May 2014 06:24:12 -0700 (PDT) From: Maxime Hadjinlian To: buildroot@buildroot.org Date: Mon, 5 May 2014 15:24:07 +0200 Message-Id: <1399296247-26320-1-git-send-email-maxime.hadjinlian@gmail.com> X-Mailer: git-send-email 1.9.2 Subject: [Buildroot] [PATCH] libenca: Move build host tool to PRE_BUILD_HOOKS X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net The make_hash host tool, should be built during a PRE_BUILD_HOOKS and not a POST_CONFIGURE_HOOKS. Signed-off-by: Maxime Hadjinlian --- package/libenca/libenca.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/libenca/libenca.mk b/package/libenca/libenca.mk index d998c66..66fcfaa 100644 --- a/package/libenca/libenca.mk +++ b/package/libenca/libenca.mk @@ -21,6 +21,6 @@ define LIBENCA_MAKE_HOST_TOOL $(MAKE) -C $(@D)/tools $(HOST_CONFIGURE_OPTS) make_hash endef -LIBENCA_POST_CONFIGURE_HOOKS += LIBENCA_MAKE_HOST_TOOL +LIBENCA_PRE_BUILD_HOOKS += LIBENCA_MAKE_HOST_TOOL $(eval $(autotools-package))