summaryrefslogtreecommitdiff
path: root/package/iproute2
diff options
context:
space:
mode:
authorPhil Sutter <phil.sutter@viprinet.com>2011-01-07 18:21:46 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2011-01-10 10:45:26 +0100
commit103518484d26a68a48879067a6337a9b01a1d44c (patch)
treef04bbf77cb2e645aa4d93a8a78bd2eb767fcd035 /package/iproute2
parent90832dbe97a44069856768ee81b3baf6743b215c (diff)
iproute2: have tc/Makefile really install something
Signed-off-by: Phil Sutter <phil.sutter@viprinet.com>
Diffstat (limited to 'package/iproute2')
-rw-r--r--package/iproute2/patches/patch-tc_Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/package/iproute2/patches/patch-tc_Makefile b/package/iproute2/patches/patch-tc_Makefile
new file mode 100644
index 000000000..29a11b40b
--- /dev/null
+++ b/package/iproute2/patches/patch-tc_Makefile
@@ -0,0 +1,18 @@
+ yeah, right. Disabling everything with echo-statements is really useful.
+--- iproute2-2.6.34.orig/tc/Makefile 2010-05-19 17:32:43.000000000 +0200
++++ iproute2-2.6.34/tc/Makefile 2011-01-03 18:28:02.980563959 +0100
+@@ -99,10 +99,11 @@ libtc.a: $(TCLIB)
+ $(AR) rcs $@ $(TCLIB)
+
+ install: all
+- echo mkdir -p $(MODDESTDIR)
+- echo install -m 0755 tc $(DESTDIR)$(SBINDIR)
++ mkdir -p $(MODDESTDIR)
++ mkdir -p $(DESTDIR)$(SBINDIR)
++ 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 ]; \