From patchwork Tue Mar 20 23:20:21 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Korsgaard X-Patchwork-Id: 147875 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 DAFB4B6EE6 for ; Wed, 21 Mar 2012 10:32:34 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id B238C1010DD; Tue, 20 Mar 2012 23:32:33 +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 8yf6sPouZ4w5; Tue, 20 Mar 2012 23:32:26 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 86747100E21; Tue, 20 Mar 2012 23:32:06 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 39BE58F75B for ; Tue, 20 Mar 2012 23:32:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 33910100744 for ; Tue, 20 Mar 2012 23:32:01 +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 XFifJe2sD-hv for ; Tue, 20 Mar 2012 23:32:00 +0000 (UTC) Received: from busybox.osuosl.org (busybox.osuosl.org [140.211.167.224]) by fraxinus.osuosl.org (Postfix) with ESMTP id EEB57100AEE for ; Tue, 20 Mar 2012 23:31:59 +0000 (UTC) Received: by busybox.osuosl.org (Postfix, from userid 4021) id EA198953F5; Tue, 20 Mar 2012 23:31:59 +0000 (UTC) From: Peter Korsgaard To: buildroot@busybox.net Date: Wed, 21 Mar 2012 00:20:21 +0100 X-Git-Refname: refs/heads/master X-Git-Oldrev: 6c29e50c94241e5179e0075fc15dab6c073f0d6f X-Git-Newrev: 8402bc658afb7c6e9856f8dbe753388c64e53da3 Message-Id: <20120320233159.EA198953F5@busybox.osuosl.org> Subject: [Buildroot] [git commit] parted: make sure to select libuuid in util-linux 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 commit: http://git.buildroot.net/buildroot/commit/?id=8402bc658afb7c6e9856f8dbe753388c64e53da3 branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master parted correctly depends on util-linux, but fails to select the libuuid suboption of util-linux, causing the following build failure if libuuid remains unselected: checking for uuid_generate in -luuid... no configure: error: GNU Parted requires libuuid - a part of the util-linux-ng package (but usually distributed separately in libuuid-devel, uuid-dev or similar) This can probably be found on your distribution's CD or FTP site or at: http://userweb.kernel.org/~kzak/util-linux-ng/ Note: originally, libuuid was part of the e2fsprogs package. Later, it moved to util-linux-ng-2.16, and that package is now the preferred source. make: *** [/home/test/test/output/build/parted-3.1/.stamp_configured] Error 1 Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- package/parted/Config.in | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/package/parted/Config.in b/package/parted/Config.in index 610c040..7349763 100644 --- a/package/parted/Config.in +++ b/package/parted/Config.in @@ -5,6 +5,7 @@ config BR2_PACKAGE_PARTED select BR2_PACKAGE_LVM2 select BR2_PACKAGE_READLINE select BR2_PACKAGE_UTIL_LINUX + select BR2_PACKAGE_UTIL_LINUX_LIBUUID help parted, the GNU partition resizing program