From patchwork Mon May 5 09:42:14 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Porcedda X-Patchwork-Id: 345647 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 2524114031C for ; Mon, 5 May 2014 19:42:23 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 7CDA387AF4; Mon, 5 May 2014 09:42:21 +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 uqnwbQSTR9Rw; Mon, 5 May 2014 09:42:20 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 207EC87ACC; Mon, 5 May 2014 09:42:20 +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 950101BF992 for ; Mon, 5 May 2014 09:42:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 91A2F2641C for ; Mon, 5 May 2014 09:42:19 +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 u4y8Km7fE+YI for ; Mon, 5 May 2014 09:42:19 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ee0-f49.google.com (mail-ee0-f49.google.com [74.125.83.49]) by silver.osuosl.org (Postfix) with ESMTPS id D4CA925356 for ; Mon, 5 May 2014 09:42:18 +0000 (UTC) Received: by mail-ee0-f49.google.com with SMTP id e53so5179587eek.8 for ; Mon, 05 May 2014 02:42:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=wCzeo/c73oj/Zx9Rthd/X0I8MhYCjQBEL9TWUF8PHHY=; b=tMH7P7isUoXZ82uX3ROP2/TSJNY1f46VVyjgdV3AXAeDjSnavzChvGamw6x0iPQeim cpQafuZ7NOj6lQVxeUnypGn+30z6I8mNs/qmSLcIcvbFvUJUxia+HWtZgIhAjQLqF/Ie 8wb99aIl2iy6nN6TDIvqBlsxKAfL75qn11u8SPv9etYFTQzZcjwbQba02el9pF7ITD3A IFiag7/i4ggiGe7ucexdS4kcCuUKNJz5hVaSVaODUpX9BcZTkbXM/+GHgxrKWcUsQpUJ v+ydvL3Zmc2+HVEkvoru7iL9p4WrPMn/+WNZxk2VM9QvZ7OCTwPzWxCZYYRtbW+4E1+c cV3w== X-Received: by 10.14.216.2 with SMTP id f2mr1168459eep.83.1399282936975; Mon, 05 May 2014 02:42:16 -0700 (PDT) Received: from ld2077.tmt.telital.com ([213.205.6.118]) by mx.google.com with ESMTPSA id bc51sm28120903eeb.22.2014.05.05.02.42.15 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 05 May 2014 02:42:16 -0700 (PDT) From: Fabio Porcedda To: buildroot@uclibc.org Date: Mon, 5 May 2014 11:42:14 +0200 Message-Id: <1399282934-14517-1-git-send-email-fabio.porcedda@gmail.com> X-Mailer: git-send-email 1.9.1 Subject: [Buildroot] [PATCH] freetype: freetype-patch: depends on host-automake 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 freetype-patch" fails because does not found autogen.sh, because autogen.sh available only for the configure stage. To fix this add host-automake as a prerequisite to freetype-patch too. This also fix the support to top-level parallel make. Signed-off-by: Fabio Porcedda --- package/freetype/freetype.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package/freetype/freetype.mk b/package/freetype/freetype.mk index c7c9a06..33a6317 100644 --- a/package/freetype/freetype.mk +++ b/package/freetype/freetype.mk @@ -83,3 +83,6 @@ HOST_FREETYPE_POST_INSTALL_HOOKS += HOST_FREETYPE_FIX_FREETYPE_INCLUDE $(eval $(autotools-package)) $(eval $(host-autotools-package)) + +# freetype-patch uses autogen.sh so add it as a prerequisite +$(FREETYPE_TARGET_PATCH): host-automake