]> rtime.felk.cvut.cz Git - lisovros/iproute2_canprio.git/commitdiff
tc: revert "echo" in install target
authorMike Frysinger <vapier@gentoo.org>
Wed, 9 Jun 2010 14:52:03 +0000 (14:52 +0000)
committerStephen Hemminger <stephen.hemminger@vyatta.com>
Fri, 23 Jul 2010 19:28:25 +0000 (12:28 -0700)
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 <vapier@gentoo.org>
tc/Makefile

index 01a16fc63c5f636d346623a799383c3359c8abce..3aa9f2638eb6374bbd1ac697b32b9e51b54768a5 100644 (file)
@@ -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 ]; \