From patchwork Thu Jun 10 00:52:03 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 55136 X-Patchwork-Delegate: shemminger@vyatta.com Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 26DF5B7D1F for ; Thu, 10 Jun 2010 10:52:40 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755525Ab0FJAwb (ORCPT ); Wed, 9 Jun 2010 20:52:31 -0400 Received: from smtp.gentoo.org ([140.211.166.183]:55521 "EHLO smtp.gentoo.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753213Ab0FJAwb (ORCPT ); Wed, 9 Jun 2010 20:52:31 -0400 Received: from vapier (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id ED7A167E50; Thu, 10 Jun 2010 00:52:29 +0000 (UTC) From: Mike Frysinger To: stephen.hemminger@vyatta.com, netdev@vger.kernel.org Cc: Andreas Henriksson Subject: [PATCH] tc: revert "echo" in install target Date: Wed, 9 Jun 2010 20:52:03 -0400 Message-Id: <1276131123-18040-1-git-send-email-vapier@gentoo.org> X-Mailer: git-send-email 1.7.1 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org The recent commit "iproute2: add option to build m_xt as a tc module" (ab814d635529787) looks like it wrongly included debug changes in the install target. So drop the `echo` so the tc binary actually gets installed again. Signed-off-by: Mike Frysinger --- tc/Makefile | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tc/Makefile b/tc/Makefile index 01a16fc..3aa9f26 100644 --- a/tc/Makefile +++ b/tc/Makefile @@ -99,10 +99,10 @@ libtc.a: $(TCLIB) $(AR) rcs $@ $(TCLIB) install: all - echo mkdir -p $(MODDESTDIR) - echo install -m 0755 tc $(DESTDIR)$(SBINDIR) + mkdir -p $(MODDESTDIR) + install -m 0755 tc $(DESTDIR)$(SBINDIR) for i in $(TCSO); \ - do echo install -m 755 $$i $(MODDESTDIR); \ + do install -m 755 $$i $(MODDESTDIR); \ done if [ ! -f $(MODDESTDIR)/m_ipt.so ]; then \ if [ -f $(MODDESTDIR)/m_xt.so ]; \