summaryrefslogtreecommitdiff
path: root/package/iproute2/patches/patch-netem_Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-04-04 10:34:02 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2010-04-04 10:34:02 +0200
commit5042ac8e5927d0089d3902b1c37e5bcc1565d053 (patch)
treecd2be3085808c5ac59dd70f9c610c6a40bfe3ffd /package/iproute2/patches/patch-netem_Makefile
parent401dabf66529cfb5ab47b4c78d5e25fd493eef1f (diff)
parent4d569ed1a3305c7b7abe8fa4273cea3b559cc85a (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Conflicts: BUGS package/autoconf/Makefile
Diffstat (limited to 'package/iproute2/patches/patch-netem_Makefile')
-rw-r--r--package/iproute2/patches/patch-netem_Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/package/iproute2/patches/patch-netem_Makefile b/package/iproute2/patches/patch-netem_Makefile
new file mode 100644
index 000000000..325d01925
--- /dev/null
+++ b/package/iproute2/patches/patch-netem_Makefile
@@ -0,0 +1,27 @@
+--- iproute2-2.6.29-1.orig/netem/Makefile 2009-03-24 23:40:54.000000000 +0100
++++ iproute2-2.6.29-1/netem/Makefile 2009-12-11 16:39:15.000000000 +0100
+@@ -2,13 +2,13 @@ DISTGEN = maketable normal pareto pareto
+ DISTDATA = normal.dist pareto.dist paretonormal.dist experimental.dist
+
+ HOSTCC ?= $(CC)
+-CCOPTS = $(CBUILD_CFLAGS)
++HOSTCFLAGS ?=
+ LDLIBS += -lm
+
+ all: $(DISTGEN) $(DISTDATA)
+
+ $(DISTGEN):
+- $(HOSTCC) $(CCOPTS) -I../include -o $@ $@.c -lm
++ $(HOSTCC) $(HOSTCFLAGS) -I../include -o $@ $@.c -lm
+
+ %.dist: %
+ ./$* > $@
+@@ -17,7 +17,7 @@ experimental.dist: maketable experimenta
+ ./maketable experimental.dat > experimental.dist
+
+ stats: stats.c
+- $(HOSTCC) $(CCOPTS) -I../include -o $@ $@.c -lm
++ $(HOSTCC) $(HOSTCFLAGS) -I../include -o $@ $@.c -lm
+
+ install: all
+ mkdir -p $(DESTDIR)/lib/tc