fix svn patch breakage in glib
[openwrt.git] / obsolete-buildroot / sources / iproute2-cross-ar-20010824.patch
1 diff -Nrup iproute2.orig/lib/Makefile iproute2/lib/Makefile
2 --- iproute2.orig/lib/Makefile 2000-04-16 13:42:52.000000000 -0400
3 +++ iproute2/lib/Makefile 2004-06-03 19:17:51.000000000 -0400
4 @@ -6,10 +6,10 @@ NLOBJ=ll_map.o libnetlink.o
5 all: libnetlink.a libutil.a
6
7 libnetlink.a: $(NLOBJ)
8 - ar rcs $@ $(NLOBJ)
9 + $(AR) rcs $@ $(NLOBJ)
10
11 libutil.a: $(UTILOBJ) $(ADDLIB)
12 - ar rcs $@ $(UTILOBJ) $(ADDLIB)
13 + $(AR) rcs $@ $(UTILOBJ) $(ADDLIB)
14
15 clean:
16 rm -f $(NLOBJ) $(UTILOBJ) $(ADDLIB) libnetlink.a libutil.a
17 diff -Nrup iproute2.orig/tc/Makefile iproute2/tc/Makefile
18 --- iproute2.orig/tc/Makefile 2000-04-16 13:42:53.000000000 -0400
19 +++ iproute2/tc/Makefile 2004-06-03 19:18:08.000000000 -0400
20 @@ -43,7 +43,7 @@ all: libtc.a tc
21 tc: $(TCOBJ) $(LIBNETLINK) $(LIBUTIL) $(TCLIB)
22
23 libtc.a: $(TCLIB)
24 - ar rcs $@ $(TCLIB)
25 + $(AR) rcs $@ $(TCLIB)
26
27 clean:
28 rm -f $(TCOBJ) $(TCLIB) libtc.a tc
This page took 0.058282 seconds and 5 git commands to generate.