From patchwork Thu May 22 18:04:28 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 351583 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id A5BF9140088 for ; Fri, 23 May 2014 04:04:49 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id DF72632C4E; Thu, 22 May 2014 18:04:47 +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 zNf9f+XCzZrQ; Thu, 22 May 2014 18:04:45 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 6ED5732C35; Thu, 22 May 2014 18:04:45 +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 8E1B21BF989 for ; Thu, 22 May 2014 18:04:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 88C2E8B50B for ; Thu, 22 May 2014 18:04:44 +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 2Qd1ovleFLV9 for ; Thu, 22 May 2014 18:04:43 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 08FDC8C15E for ; Thu, 22 May 2014 18:04:42 +0000 (UTC) Received: from asgard (host152.190-227-169.telecom.net.ar [190.227.169.152]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.8/8.14.8) with ESMTP id s4MI4ZoR002398 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 22 May 2014 18:04:38 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1400781880; bh=SqSpjbQHgE1FbtKRCJC8dpnxhl6rhlXAveCAlkKIXzQ=; h=From:To:Cc:Subject:Date; b=g4O+/GNsECEYE3gCV1NNA/O6Unr+zbt+e+iP5v/tA2K547o1Cp5shqdkQSpfmuEiw dRqOd+jn22OpBYJHqBIad20AY3iYmPK7fNm/4i1rLRJekMQWnJ+S1tJsiidwmeE0Kx zCrksXxCbIZ+vLgiDlLCuNvxaDpTYJImqnMoUkrE= Received: by asgard (sSMTP sendmail emulation); Thu, 22 May 2014 15:04:29 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Thu, 22 May 2014 15:04:28 -0300 Message-Id: <1400781868-18305-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.5.5 MIME-Version: 1.0 X-Virus-Scanned: clamav-milter 0.98.1 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] ruby: disable openssl for host variant 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: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net As reported by Fatih Aşıcı on the mailing list it sometimes fails with the host openssl depending on versions when development files are installed. And as suggested by Thomas Petazzoni it's really not required for anything so just disable it. Signed-off-by: Gustavo Zacarias --- package/ruby/ruby.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/ruby/ruby.mk b/package/ruby/ruby.mk index 7359cf1..f88ff16 100644 --- a/package/ruby/ruby.mk +++ b/package/ruby/ruby.mk @@ -14,7 +14,8 @@ HOST_RUBY_DEPENDENCIES = host-pkgconf RUBY_MAKE_ENV = $(TARGET_MAKE_ENV) RUBY_MAKE = $(MAKE1) RUBY_CONF_OPT = --disable-install-doc --disable-rpath -HOST_RUBY_CONF_OPT = --disable-install-doc --with-out-ext=curses,readline +HOST_RUBY_CONF_OPT = --disable-install-doc \ + --with-out-ext=curses,openssl,readline RUBY_LICENSE = Ruby or BSD-2c, BSD-3c, others RUBY_LICENSE_FILES = LEGAL COPYING BSDL