From patchwork Mon Oct 21 13:25:29 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Dawson X-Patchwork-Id: 285190 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 8C8322C00C3 for ; Tue, 22 Oct 2013 00:25:39 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 77BDB898E6; Mon, 21 Oct 2013 13:25:38 +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 uO5FKY8vwY1G; Mon, 21 Oct 2013 13:25:38 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 049C2898EF; Mon, 21 Oct 2013 13:25:38 +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 820821C252D for ; Mon, 21 Oct 2013 13:25:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 7B9A887B07 for ; Mon, 21 Oct 2013 13:25:36 +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 p2xjN1S61cVE for ; Mon, 21 Oct 2013 13:25:36 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wi0-f176.google.com (mail-wi0-f176.google.com [209.85.212.176]) by whitealder.osuosl.org (Postfix) with ESMTPS id AE8D68983C for ; Mon, 21 Oct 2013 13:25:35 +0000 (UTC) Received: by mail-wi0-f176.google.com with SMTP id l12so3926064wiv.3 for ; Mon, 21 Oct 2013 06:25:34 -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=S+76GFH5iI/Jc2f1rCb4PfgIn/paq9o3ko7dLPGiPZk=; b=s1+5oFEdWw+yvcnjBC9Ee+b8GCwB/BhwC9I+JIfMb+8T2WSwQGOaxoBF1CNaDkVb6j kBHi3chQ/V4SNIBFM0sZMxpmS6AiFo98MK1hePqu1AJJoGcW2IOEtUfDkA+aL4NwClvM Y6uJidbrfZXGoHgKlR8re8bwb2XHMphvgJ/QksW3ib5kUc6TH5krPHzbuycmcIrQ3az5 8Kc+f/v2L7wzcVev0ypQiq1HocnH0J8TC76TKOo77xoZn3yWe2DrWRDyCxHZvkPAt9dV eZHRdMPxQKCplRYVBv5rbCDGONtowhLNV91zSC7ph0XowdnGYjwvA9O72NDj2DKJCZ1w BPDg== X-Received: by 10.180.73.134 with SMTP id l6mr9899373wiv.16.1382361933958; Mon, 21 Oct 2013 06:25:33 -0700 (PDT) Received: from localhost.localdomain (host109-150-80-232.range109-150.btcentralplus.com. [109.150.80.232]) by mx.google.com with ESMTPSA id bs15sm55776056wib.10.2013.10.21.06.25.32 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 21 Oct 2013 06:25:33 -0700 (PDT) From: spdawson@gmail.com To: buildroot@busybox.net Date: Mon, 21 Oct 2013 14:25:29 +0100 Message-Id: <1382361929-11261-1-git-send-email-spdawson@gmail.com> X-Mailer: git-send-email 1.8.3.2 Subject: [Buildroot] [PATCH] webkit: fix target install 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 From: Simon Dawson Commit 33a9d34ff375ec0c0389c9af6bc499a8dd7ccbc9 fixed the staging install for webkit, which was hanging due to deadlock during parallel make install. This problem also afflicts the target install, which is fixed by this patch. Signed-off-by: Simon Dawson --- package/webkit/webkit.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/webkit/webkit.mk b/package/webkit/webkit.mk index eb1547b..21b535f 100644 --- a/package/webkit/webkit.mk +++ b/package/webkit/webkit.mk @@ -17,6 +17,7 @@ WEBKIT_AUTORECONF_OPT = -I $(@D)/Source/autotools # parallel make install deadlocks with make 3.81 WEBKIT_INSTALL_STAGING_OPT = -j1 DESTDIR=$(STAGING_DIR) install +WEBKIT_INSTALL_TARGET_OPT = -j1 DESTDIR=$(TARGET_DIR) install # Does not build and it's disabled by default # in newer releases