From patchwork Mon May 5 14:08:22 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Porcedda X-Patchwork-Id: 345730 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 AE0791402A0 for ; Tue, 6 May 2014 00:08:33 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 6231B87A5C; Mon, 5 May 2014 14:08:32 +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 fYF-yBgmLCS2; Mon, 5 May 2014 14:08:32 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id D96C287B75; Mon, 5 May 2014 14:08:31 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id A020F1BF96A for ; Mon, 5 May 2014 14:08:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 9D60C8B19C for ; Mon, 5 May 2014 14:08:30 +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 kvq4rvEGD44o for ; Mon, 5 May 2014 14:08:30 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-pd0-f180.google.com (mail-pd0-f180.google.com [209.85.192.180]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 269228B1A1 for ; Mon, 5 May 2014 14:08:30 +0000 (UTC) Received: by mail-pd0-f180.google.com with SMTP id y10so1404056pdj.11 for ; Mon, 05 May 2014 07:08:29 -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=yqGADbK3ixTYnP/BrXUqN3fvGIkZIwjv+4BX+uHO0oc=; b=mg66AcSaAaEbJIBPmbznICrFOhmJTow3f6PoYCJm6TcF4udk5wtjPD5Q3AtaLeY5pB KvlSsWLi4MQOIaBTBcS2FT5AA+yZb4qn/xena2LOS+vCHDhZtsIV48OiQg4eUQjyo4XG PbLGxvn3+vr1yeHNrCv+Vf2NSsXi3Pfle7q0NfcpIiuPd02hqyRPbH7IZu10UzvqXV+h w+HUINmE0F4ecjvyutKeSQOG9+l8kY1iEo4XRiAnycX+oQPdn+iMhkmbeXkmeRJ7uax7 ByGESb3HDyDxF7gPzuBxmFubzpAOjfHTHW2yjD63ZtMzBuXfD44NsAHN0syJPqayzzox wNXg== X-Received: by 10.66.186.238 with SMTP id fn14mr72646606pac.135.1399298909687; Mon, 05 May 2014 07:08:29 -0700 (PDT) Received: from ld2077.tmt.telital.com ([213.205.6.118]) by mx.google.com with ESMTPSA id ry8sm72807790pac.29.2014.05.05.07.08.26 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 05 May 2014 07:08:28 -0700 (PDT) From: Fabio Porcedda To: buildroot@uclibc.org Date: Mon, 5 May 2014 16:08:22 +0200 Message-Id: <1399298902-19863-1-git-send-email-fabio.porcedda@gmail.com> X-Mailer: git-send-email 1.9.1 Subject: [Buildroot] [PATCH v2] 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. This change also fix the support to top-level parallel make. Signed-off-by: Fabio Porcedda Cc: Samuel Martin --- v2: - Add host-automake as a order-only-prerequisite because it is a phony target. package/freetype/freetype.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/freetype/freetype.mk b/package/freetype/freetype.mk index c7c9a06..a6ae0a0 100644 --- a/package/freetype/freetype.mk +++ b/package/freetype/freetype.mk @@ -83,3 +83,7 @@ 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 order-only-prerequisite +# because it is a phony target. +$(FREETYPE_TARGET_PATCH): | host-automake