do not INSTALL symlinks
[buildroot.git] / package / zlib / zlib-1.2.3-030-OBJA.patch
blob63d5408b8e540a9b0448c246237cc54c9636e525
1 diff -rdup zlib-1.2.3.old/Makefile.in zlib-1.2.3/Makefile.in
2 --- zlib-1.2.3.old/Makefile.in 2008-10-31 13:02:28.000000000 +0100
3 +++ zlib-1.2.3/Makefile.in 2008-10-31 13:04:21.000000000 +0100
4 @@ -47,11 +47,9 @@ includedir = ${prefix}/include
5 mandir = ${prefix}/share/man
6 man3dir = ${mandir}/man3
8 -OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \
9 - zutil.o inflate.o infback.o inftrees.o inffast.o
11 -OBJA =
12 # to use the asm code: make OBJA=match.o
13 +OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \
14 + zutil.o inflate.o infback.o inftrees.o inffast.o $(OBJA)
16 TEST_OBJS = example.o minigzip.o
18 @@ -68,8 +66,8 @@ test: all
19 echo ' *** zlib test FAILED ***'; \
22 -libz.a: $(OBJS) $(OBJA)
23 - $(AR) $(ARFLAGS) $@ $(OBJS) $(OBJA)
24 +libz.a: $(OBJS)
25 + $(AR) $(ARFLAGS) $@ $(OBJS)
26 -@ ($(RANLIB) $@ || true) >/dev/null 2>&1
28 match.o: match.S