summaryrefslogtreecommitdiff
path: root/package/iproute2/patches/patch-netem_Makefile
blob: 69141bd62c6023c5cf7d25b3cd91a165de501e56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
--- iproute2-4.10.0.orig/netem/Makefile	2017-02-20 17:47:52.000000000 +0100
+++ iproute2-4.10.0/netem/Makefile	2017-04-23 20:23:07.404790192 +0200
@@ -1,14 +1,12 @@
 DISTGEN = maketable normal pareto paretonormal
 DISTDATA = normal.dist pareto.dist paretonormal.dist experimental.dist
 
-HOSTCC ?= $(CC)
-CCOPTS  = $(CBUILD_CFLAGS)
 LDLIBS += -lm
 
 all: $(DISTGEN) $(DISTDATA)
 
 $(DISTGEN):
-	$(HOSTCC) $(CCOPTS) -I../include -o $@ $@.c -lm
+	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) -I../include -o $@ $@.c -lm
 
 %.dist: %
 	./$* > $@
@@ -17,7 +15,7 @@ experimental.dist: maketable experimenta
 	./maketable experimental.dat > experimental.dist
 
 stats: stats.c
-	$(HOSTCC) $(CCOPTS) -I../include -o $@ $@.c -lm
+	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) -I../include -o $@ $@.c -lm
 
 install: all
 	mkdir -p $(DESTDIR)$(LIBDIR)/tc