From: Daniel Axtens Date: Sun, 26 Apr 2015 09:13:11 +0000 (+1000) Subject: Makefile.in: use match.lo for linking PIC X-Git-Tag: 1.9.9-b1~882^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F5%2Fhead;p=thirdparty%2Fzlib-ng.git Makefile.in: use match.lo for linking PIC The rest of the items in the list are .lo files; this should be too. Needed for ./configure --cover to work. Signed-off-by: Daniel Axtens --- diff --git a/Makefile.in b/Makefile.in index 972283fc..522eea22 100644 --- a/Makefile.in +++ b/Makefile.in @@ -57,7 +57,7 @@ OBJZ = adler32.o crc32.o deflate.o match.o infback.o inffast.o inflate.o inftree OBJG = compress.o uncompr.o gzclose.o gzlib.o gzread.o gzwrite.o OBJC = $(OBJZ) $(OBJG) -PIC_OBJZ = adler32.lo crc32.lo deflate.lo match.o infback.lo inffast.lo inflate.lo inftrees.lo trees.lo zutil.lo $(ARCH_SHARED_OBJS) +PIC_OBJZ = adler32.lo crc32.lo deflate.lo match.lo infback.lo inffast.lo inflate.lo inftrees.lo trees.lo zutil.lo $(ARCH_SHARED_OBJS) PIC_OBJG = compress.lo uncompr.lo gzclose.lo gzlib.lo gzread.lo gzwrite.lo PIC_OBJC = $(PIC_OBJZ) $(PIC_OBJG)