diff options
author | wiz <wiz@pkgsrc.org> | 2012-09-02 14:56:17 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2012-09-02 14:56:17 +0000 |
commit | 8b58db93dfbf1159d7edaf33dda90d9279dd43ab (patch) | |
tree | efc376527d13e10dd81daed0bf104f5cc0e6b974 /devel/zlib | |
parent | 4b13c5c36ef0876f6fd8b6a43ad24e0134609147 (diff) | |
download | pkgsrc-8b58db93dfbf1159d7edaf33dda90d9279dd43ab.tar.gz |
Add --tag=CC to libtool line.
Shouldn't be necessary, on the other hand, shouldn't hurt either.
Requested by jaimef@linbsd.org.
Diffstat (limited to 'devel/zlib')
-rw-r--r-- | devel/zlib/files/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/zlib/files/Makefile b/devel/zlib/files/Makefile index 2a50b65e5bb..3af61a3c9a2 100644 --- a/devel/zlib/files/Makefile +++ b/devel/zlib/files/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2012/03/19 15:47:12 adam Exp $ +# $NetBSD: Makefile,v 1.4 2012/09/02 14:56:17 wiz Exp $ # # Replacement Makefile for zlib. @@ -10,7 +10,7 @@ LOBJS= ${OBJS:R:S/$/.lo/g} all: libz.la libz.la: ${LOBJS} - ${LIBTOOL} --mode=link ${CC} ${LDFLAGS} ${CFLAGS} -o ${.TARGET} \ + ${LIBTOOL} --mode=link --tag=CC ${CC} ${LDFLAGS} ${CFLAGS} -o ${.TARGET} \ ${LOBJS} -version-info 1:2 -rpath ${PREFIX}/lib libz.a: ${OBJS} @@ -23,4 +23,4 @@ libz.a: ${OBJS} ${CC} -c ${CFLAGS} -o ${.TARGET} ${.IMPSRC} .c.lo: - ${LIBTOOL} --mode=compile ${CC} -c ${CFLAGS} -o ${.TARGET} ${.IMPSRC} + ${LIBTOOL} --mode=compile --tag=CC ${CC} -c ${CFLAGS} -o ${.TARGET} ${.IMPSRC} |