From patchwork Sat Aug 9 13:28:39 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 378754 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 D3FE514011B for ; Sat, 9 Aug 2014 23:28:52 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id E08F693040; Sat, 9 Aug 2014 13:28:51 +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 LqXUBJI4KgCH; Sat, 9 Aug 2014 13:28:51 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 51C668A478; Sat, 9 Aug 2014 13:28:51 +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 860881BFA96 for ; Sat, 9 Aug 2014 13:28:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 824118BE53 for ; Sat, 9 Aug 2014 13:28:50 +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 bV6UK-Nz77XC for ; Sat, 9 Aug 2014 13:28:49 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout12.t-online.de (mailout12.t-online.de [194.25.134.22]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 978E98BE52 for ; Sat, 9 Aug 2014 13:28:49 +0000 (UTC) Received: from fwd00.aul.t-online.de (fwd00.aul.t-online.de [172.20.26.147]) by mailout12.t-online.de (Postfix) with SMTP id 8B03925F084 for ; Sat, 9 Aug 2014 15:28:47 +0200 (CEST) Received: from fli4l.lan.fli4l (STOMp+ZrZh1fFP5LWKllUirVE2d7CA+cZRlOMlFL1pVwEncxVchax3bHsQT7tMLwyl@[87.146.208.64]) by fwd00.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1XG6hP-1QsN3Q0; Sat, 9 Aug 2014 15:28:43 +0200 Received: from fli4lbuild64.lan.fli4l ([192.168.1.51]:50014) by fli4l.lan.fli4l with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.83) (envelope-from ) id 1XG6hO-0006EX-HJ; Sat, 09 Aug 2014 15:28:42 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sat, 9 Aug 2014 15:28:39 +0200 Message-Id: <1407590919-23046-1-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 X-ID: STOMp+ZrZh1fFP5LWKllUirVE2d7CA+cZRlOMlFL1pVwEncxVchax3bHsQT7tMLwyl X-TOI-MSGID: 466eb938-9083-4d91-9807-35526aaa8d98 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH 1/1] package/tar: Depends on MMU 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 Fixes misc.o: In function `_xfork': misc.c:(.text+0x614): undefined reference to `_fork' ../lib/libtar.a(rtapelib.o): In function `_rmt_open__': rtapelib.c:(.text+0x6d2): undefined reference to `_fork' To reproduce use this defconfig http://autobuild.buildroot.net/results/8d5/8d5ad404fab7ec2a501972ba9c08b0109e420b80/defconfig Signed-off-by: Bernd Kuhls --- package/tar/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/tar/Config.in b/package/tar/Config.in index 06a5825..74b0219 100644 --- a/package/tar/Config.in +++ b/package/tar/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_TAR bool "tar" depends on BR2_USE_WCHAR + depends on BR2_USE_MMU # fork() help A program that saves many files together into a single tape or disk archive, and can restore individual files from the archive.