From patchwork Tue Feb 4 09:38:57 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ryan Barnett X-Patchwork-Id: 316508 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 932842C0084 for ; Tue, 4 Feb 2014 20:39:17 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 8BD3E93AA5; Tue, 4 Feb 2014 09:39:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hTx6a7unVpLz; Tue, 4 Feb 2014 09:39:14 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 4159D93AA3; Tue, 4 Feb 2014 09:39:14 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 7AC8F1CE7BE for ; Tue, 4 Feb 2014 09:39:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 764088B64B for ; Tue, 4 Feb 2014 09:39:13 +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 FTGSbE8r3jOp for ; Tue, 4 Feb 2014 09:39:12 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wg0-f47.google.com (mail-wg0-f47.google.com [74.125.82.47]) by whitealder.osuosl.org (Postfix) with ESMTPS id DF27D8B5E0 for ; Tue, 4 Feb 2014 09:39:11 +0000 (UTC) Received: by mail-wg0-f47.google.com with SMTP id m15so12327966wgh.2 for ; Tue, 04 Feb 2014 01:39:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=cCTUirW16IZ2nZuAgHE4m3A/LE9TPxFhp6jYnxKFOH0=; b=qR24ZMkNT+Ln+HIM+kB6cvd/Q5LRQ7KR7ac4oj9aSkL/LJIiFoVw3e2a6QAqWQKkSR +s+9PmrQW2FmZYwtoDnlDVqnSVQeWxYpgOc7cTW8zUjZ0ytTK9bS7/pZqIRSiMQakBEz gXDpp/ouqGScbtDs8FWqMX0482Eg3JinNqEp47kOKHYF/aQq9+HEOAwsIYwxXaayLbTv Y5wTrR0AwBj9Sc9ZuJZ6mWk6W4MSVvHlod7CFgeYruQeXPMKBj1ODlqBtMrw/H51iftL OYyAdRtoyXWD14IlrRxW90jwbKekREifbUCaZBdEuMTwqKucLksGwv2zuiENpbww3gS+ dsNQ== X-Received: by 10.180.95.162 with SMTP id dl2mr11923473wib.17.1391506749960; Tue, 04 Feb 2014 01:39:09 -0800 (PST) Received: from localhost.localdomain ([74.125.61.14]) by mx.google.com with ESMTPSA id ev4sm34081273wib.1.2014.02.04.01.39.09 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 04 Feb 2014 01:39:09 -0800 (PST) From: Ryan Barnett To: buildroot@busybox.net Date: Tue, 4 Feb 2014 10:38:57 +0100 Message-Id: <1391506737-16469-1-git-send-email-rjbarnet@rockwellcollins.com> X-Mailer: git-send-email 1.8.3.2 Subject: [Buildroot] [PATCH 1/1] gpm: run autogen.sh as PRE_CONFIGURE step 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 Move the GPM_RUN_AUTOGEN to be a PRE_CONFIGURE step because this step depends on the dependancies being built. If it is a POST_PATCH step the dependancies won't be built and the GPM_RUN_AUTOGEN step will fail. Signed-off-by: Ryan Barnett --- package/gpm/gpm.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/gpm/gpm.mk b/package/gpm/gpm.mk index 296966a..58fab00 100644 --- a/package/gpm/gpm.mk +++ b/package/gpm/gpm.mk @@ -28,7 +28,7 @@ GPM_CONF_OPT = --without-curses define GPM_RUN_AUTOGEN cd $(@D) && PATH=$(HOST_PATH) ./autogen.sh endef -GPM_POST_PATCH_HOOKS += GPM_RUN_AUTOGEN +GPM_PRE_CONFIGURE_HOOKS += GPM_RUN_AUTOGEN GPM_DEPENDENCIES += host-automake host-autoconf host-libtool