From patchwork Wed May 15 18:47:04 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adrian Perez de Castro X-Patchwork-Id: 1100157 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.138; helo=whitealder.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=igalia.com Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=igalia.com header.i=@igalia.com header.b="E/g1wnnF"; dkim-atps=neutral Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4543Ss6j2tz9sCJ for ; Thu, 16 May 2019 04:47:25 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 505D086D91; Wed, 15 May 2019 18:47:23 +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 cvYLj2klREZm; Wed, 15 May 2019 18:47:22 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 6D9A686DDE; Wed, 15 May 2019 18:47:22 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 30D971BF40B for ; Wed, 15 May 2019 18:47:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 2C47787EFE for ; Wed, 15 May 2019 18:47: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 KuU4YfBQWUVj for ; Wed, 15 May 2019 18:47:18 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from fanzine.igalia.com (fanzine.igalia.com [91.117.99.155]) by hemlock.osuosl.org (Postfix) with ESMTPS id 14CAA87EFF for ; Wed, 15 May 2019 18:47:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=igalia.com; s=20170329; h=Content-Transfer-Encoding:MIME-Version:References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From; bh=UlVU3Sq48YPmmqMgMJsBEyTrMJVQ02j7aw//Eg00G+o=; b=E/g1wnnF5UwKdssv7oIC5DzPBI5NuyX3kfWrnPLfpJlBFiz/9Ng3VcOiXuWXp6tuEkCI20IdmUw36HjbbHoUwqWYwnrEc4ecJFJd+YLxUP0nUlF/ITOqDXtbOau6EBFLUSlf42ec6mJ4PnNOICJL86/mFUfUrMYS5sp+RY8tXg8uHmA0rSOwtLAPLh3qnn1XjoJWJtifjmzdlOqJFX95/kWaswGUN4JW1+MrdMcpZ4jmk0a9rR68E+op5bXlrTQtVhKpBErfB7+ipjEmVrtaS9SKYGG2FGE5ZpFq3nk6AEyts5Weov6Mi8EHSpd+TMwGZ0i6Y/uRCxCn/FzslSQEOw==; Received: from mobile-access-b04827-38.dhcp.inet.fi ([176.72.39.38] helo=kodama) by fanzine.igalia.com with esmtpsa (Cipher TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim) id 1hQyvq-0000WA-PN; Wed, 15 May 2019 20:47:15 +0200 Received: from localhost (kodama [local]) by kodama (OpenSMTPD) with ESMTPA id ffdac8b5; Wed, 15 May 2019 18:47:04 +0000 (UTC) From: Adrian Perez de Castro To: buildroot@buildroot.org Date: Wed, 15 May 2019 21:47:04 +0300 Message-Id: <20190515184704.34146-1-aperez@igalia.com> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190515183854.28123-1-aperez@igalia.com> References: <20190515183854.28123-1-aperez@igalia.com> MIME-Version: 1.0 Subject: [Buildroot] [PATCH v2 1/1] package/cog: mark for installation to the staging tree X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Adrian Perez de Castro Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" The cog package includes libraries and headers, so installing it to the staging tree allows having those available for development. Signed-off-by: Adrian Perez de Castro --- Changes v1 -> v2: - Reword commit log. --- package/cog/cog.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/cog/cog.mk b/package/cog/cog.mk index 43f13152c8..44ea62185d 100644 --- a/package/cog/cog.mk +++ b/package/cog/cog.mk @@ -6,6 +6,7 @@ COG_VERSION = v0.2.0 COG_SITE = $(call github,Igalia,cog,$(COG_VERSION)) +COG_INSTALL_STAGING = YES COG_DEPENDENCIES = dbus wpewebkit wpebackend-fdo COG_LICENSE = MIT COG_LICENSE_FILES = COPYING