summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbapt <bapt@FreeBSD.org>2015-01-11 09:25:01 +0000
committerbapt <bapt@FreeBSD.org>2015-01-11 09:25:01 +0000
commit20b777f8e83ed078ba2dc38c2692e09d4e318f82 (patch)
tree76b3bdc48f8be159f1848c76e9b8c7f79f8686f7
parent8b5dabe5de8e47fb836f4e208ba28131e0f73b05 (diff)
downloadFreeBSD-src-20b777f8e83ed078ba2dc38c2692e09d4e318f82.zip
FreeBSD-src-20b777f8e83ed078ba2dc38c2692e09d4e318f82.tar.gz
Do not regenerate and install liblzma.pc when only build libraries
aka do not regenerate while generating 32bits libs Reported by: antoine
-rw-r--r--lib/liblzma/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/liblzma/Makefile b/lib/liblzma/Makefile
index b2c22c8..2229194 100644
--- a/lib/liblzma/Makefile
+++ b/lib/liblzma/Makefile
@@ -148,12 +148,13 @@ CFLAGS+= -DSYMBOL_VERSIONING
CLEANFILES+= liblzma.pc
+.if !defined(LIBRARIES_ONLY)
all: liblzma.pc
liblzma.pc: liblzma.pc.in
@sed -e 's,@prefix@,/usr,g ; \
s,@exec_prefix@,/usr,g ; \
- s,@libdir@,${LIBDIR},g ; \
- s,@includedir@,${INCLUDEDIR},g ; \
+ s,@libdir@,/usr/lib,g ; \
+ s,@includedir@,/usr/include,g ; \
s,@PACKAGE_URL@,http://tukaani.org/xz/,g ; \
s,@PACKAGE_VERSION@,${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH},g ; \
s,@PTHREAD_CFLAGS@,,g ; \
@@ -162,5 +163,6 @@ liblzma.pc: liblzma.pc.in
beforeinstall:
@${INSTALL} -C -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
liblzma.pc ${DESTDIR}${LIBDATADIR}/pkgconfig
+.endif
.include <bsd.lib.mk>
OpenPOWER on IntegriCloud