From patchwork Sun Mar 24 12:20:07 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 230439 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 5A5682C008C for ; Sun, 24 Mar 2013 23:20:26 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B92BF8C369; Sun, 24 Mar 2013 12:20: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 xWgMLTGAVL6h; Sun, 24 Mar 2013 12:20:20 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 5AF9A8BD1E; Sun, 24 Mar 2013 12:20:19 +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 23EF08F7A3 for ; Sun, 24 Mar 2013 12:20:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 8CB0A8BD1E for ; Sun, 24 Mar 2013 12:20:18 +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 gGCg6lK5DswP for ; Sun, 24 Mar 2013 12:20:16 +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 E285C872D6 for ; Sun, 24 Mar 2013 12:20:15 +0000 (UTC) Received: from asgard (host67.190-138-38.telecom.net.ar [190.138.38.67]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.6/8.14.6) with ESMTP id r2OCK8En025448 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 24 Mar 2013 12:20:10 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1364127612; bh=4aMHni1KDg8J7LXgjPocQXoztpd+MYq4wWabd0VPGsM=; h=From:To:Cc:Subject:Date; b=ZcwQLR3WeYtstu6loyiidrf76RlceUcj1xPDPYnG+gYuv8ha+CbJlS2IG97cS4lp1 NPqUrltX4nND0jeUrL+z0xzyEk1s7nqyVeqMF1oclBqqEg8Py6B9OLrPObzslJYC0d A1E+HxjUZn3YJTKDIU9M/QZ8moN7+VWHejuMNOWQ= Received: by asgard (sSMTP sendmail emulation); Sun, 24 Mar 2013 09:20:07 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Sun, 24 Mar 2013 09:20:07 -0300 Message-Id: <1364127607-29027-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.1.5 X-Virus-Scanned: clamav-milter 0.97.6 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCHv2] quota: select BR2_PACKAGE_UTIL_LINUX_BINARIES 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 All of the util-linux tools options depend on BR2_PACKAGE_UTIL_LINUX_BINARIES that select all the required util-linux libraries and enable the tools build process. So basically quota is selecting a hidden/unavailable option and triggering a util-linux build failure. Fixes: http://autobuild.buildroot.net/results/bc3c75e7c60fe6db54ea56dd7c398ba7878bff83/ Signed-off-by: Gustavo Zacarias --- v2: Better explain why, and also add microblaze depend from util-linux package/quota/Config.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/quota/Config.in b/package/quota/Config.in index f6341d3..5127a9a 100644 --- a/package/quota/Config.in +++ b/package/quota/Config.in @@ -3,7 +3,9 @@ config BR2_PACKAGE_QUOTA depends on BR2_LARGEFILE depends on BR2_USE_WCHAR depends on BR2_USE_MMU # fork() + depends on !(BR2_microblazeel || BR2_microblazebe) # util-linux select BR2_PACKAGE_UTIL_LINUX + select BR2_PACKAGE_UTIL_LINUX_BINARIES select BR2_PACKAGE_UTIL_LINUX_MOUNT select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE select BR2_PACKAGE_LIBTIRPC if !BR2_TOOLCHAIN_HAS_NATIVE_RPC