From patchwork Tue Dec 9 19:13:05 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 419225 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 F209D1400D5 for ; Wed, 10 Dec 2014 06:14:42 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 2D7DE954E9; Tue, 9 Dec 2014 19:14:42 +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 QncwNvJUGxoP; Tue, 9 Dec 2014 19:14:41 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id CC225954DB; Tue, 9 Dec 2014 19:14:40 +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 23CB01C2A75 for ; Tue, 9 Dec 2014 19:14:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 1F7AB91847 for ; Tue, 9 Dec 2014 19:14:40 +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 f6znkJkhBgQj for ; Tue, 9 Dec 2014 19:14:39 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from www.zacarias.com.ar (www.zacarias.com.ar [62.210.192.172]) by whitealder.osuosl.org (Postfix) with ESMTPS id BC3BD91846 for ; Tue, 9 Dec 2014 19:14:38 +0000 (UTC) Received: from asgard (cpe-181-46-99-160.telecentro-reversos.com.ar [181.46.99.160] (may be forged)) (authenticated bits=0) by www.zacarias.com.ar (8.14.9/8.14.9) with ESMTP id sB9JEVgh009937 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Tue, 9 Dec 2014 19:14:34 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1418152476; bh=h4ZYVVP6uBdlGSHrh38ht50hQr+HRHnUVKqtzFGMSN4=; h=From:To:Cc:Subject:Date; b=erw2sXKPBKthnnRhntykn6mwruEaoen6MMN7SeQ0ttZQHkgzpPNLj/kiQxdQBJDpx RxB9ssF91Z1HZtqzu1BvMMIafivKyLqd3B9yNcY4nVCAykssrKo2zF31+6BW7jvImD /bZzr6xIqLlSUOf9FQaTh99is3sE2SqBwuu8YwnI= Received: by asgard (sSMTP sendmail emulation); Tue, 09 Dec 2014 16:13:05 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Tue, 9 Dec 2014 16:13:05 -0300 Message-Id: <1418152385-21365-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 2.0.4 X-Virus-Scanned: clamav-milter 0.98.5 at www X-Virus-Status: Clean Subject: [Buildroot] [PATCH] thrift: disable tutorial(s) X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 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" The tutorials don't pass pedantic mode hence causing failures. And we don't care about tutorials anyway, disable them to save time as well. Fixes. http://autobuild.buildroot.net/results/f68/f68d537e623f565000ca966372a7c0277f4e3888/ Signed-off-by: Gustavo Zacarias --- package/thrift/thrift.mk | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/package/thrift/thrift.mk b/package/thrift/thrift.mk index 5c350dd..955e9ec 100644 --- a/package/thrift/thrift.mk +++ b/package/thrift/thrift.mk @@ -12,9 +12,11 @@ HOST_THRIFT_DEPENDENCIES = host-boost host-libevent host-openssl host-pkgconf \ host-zlib host-bison host-flex THRIFT_CONF_OPTS = --with-sysroot=$(STAGING_DIR) \ --with-boost=$(STAGING_DIR) \ - --disable-tests + --disable-tests \ + --disable-tutorial HOST_THRIFT_CONF_OPTS = --with-sysroot=$(HOST_DIR) \ - --disable-tests + --disable-tests \ + --disable-tutorial THRIFT_AUTORECONF = YES THRIFT_LICENSE = Apache-2.0 THRIFT_LICENSE_FILES = LICENSE