tc: revert "echo" in install target
The recent commit "iproute2: add option to build m_xt as a tc module"
(ab814d6355) 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>
This commit is contained in:
parent
dec01609dc
commit
bf512683e0
|
|
@ -99,10 +99,10 @@ libtc.a: $(TCLIB)
|
||||||
$(AR) rcs $@ $(TCLIB)
|
$(AR) rcs $@ $(TCLIB)
|
||||||
|
|
||||||
install: all
|
install: all
|
||||||
echo mkdir -p $(MODDESTDIR)
|
mkdir -p $(MODDESTDIR)
|
||||||
echo install -m 0755 tc $(DESTDIR)$(SBINDIR)
|
install -m 0755 tc $(DESTDIR)$(SBINDIR)
|
||||||
for i in $(TCSO); \
|
for i in $(TCSO); \
|
||||||
do echo install -m 755 $$i $(MODDESTDIR); \
|
do install -m 755 $$i $(MODDESTDIR); \
|
||||||
done
|
done
|
||||||
if [ ! -f $(MODDESTDIR)/m_ipt.so ]; then \
|
if [ ! -f $(MODDESTDIR)/m_ipt.so ]; then \
|
||||||
if [ -f $(MODDESTDIR)/m_xt.so ]; \
|
if [ -f $(MODDESTDIR)/m_xt.so ]; \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue