From patchwork Sun Nov 30 14:18:19 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 416122 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 3F33C14012D for ; Mon, 1 Dec 2014 01:20:45 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 706432F60A; Sun, 30 Nov 2014 14:20:44 +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 HkAJrRi4HHwH; Sun, 30 Nov 2014 14:20:41 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id E70293367F; Sun, 30 Nov 2014 14:20:24 +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 63AA41C2A63 for ; Sun, 30 Nov 2014 14:19:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 612A2A1B54 for ; Sun, 30 Nov 2014 14:19:45 +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 oKak8DhCScmG for ; Sun, 30 Nov 2014 14:19:45 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (down.free-electrons.com [37.187.137.238]) by fraxinus.osuosl.org (Postfix) with ESMTP id 0A29EA1B46 for ; Sun, 30 Nov 2014 14:19:45 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id E26585DB; Sun, 30 Nov 2014 15:19:48 +0100 (CET) Received: from localhost (pib31-1-78-237-111-234.fbx.proxad.net [78.237.111.234]) by mail.free-electrons.com (Postfix) with ESMTPSA id 75DB55D9; Sun, 30 Nov 2014 15:19:48 +0100 (CET) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Sun, 30 Nov 2014 15:18:19 +0100 Message-Id: <1417357142-14307-32-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1417357142-14307-1-git-send-email-thomas.petazzoni@free-electrons.com> References: <1417357142-14307-1-git-send-email-thomas.petazzoni@free-electrons.com> Cc: Thomas Petazzoni Subject: [Buildroot] [PATCHv3 31/74] tree: don't install man page 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" We don't support installing documentation on the target, so there's no point in having explicit code to do so. Signed-off-by: Thomas Petazzoni Acked-by: "Yann E. MORIN" --- package/tree/tree.mk | 2 -- 1 file changed, 2 deletions(-) diff --git a/package/tree/tree.mk b/package/tree/tree.mk index 922deb8..83ea472 100644 --- a/package/tree/tree.mk +++ b/package/tree/tree.mk @@ -16,8 +16,6 @@ endef define TREE_INSTALL_TARGET_CMDS $(INSTALL) -D -m 0755 $(@D)/tree $(TARGET_DIR)/usr/bin/tree - $(INSTALL) -D -m 0644 $(@D)/doc/tree.1 \ - $(TARGET_DIR)/usr/share/man/man1/tree.1 endef $(eval $(generic-package))