From f112a185b1f2e96c202ca636f5b7807ccdf1579d Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Thu, 16 Jan 2020 17:27:08 +0000 Subject: [PATCH] pkgbase: move profiling _p.a libs into -development packages Profiling library archives are part of the development environment; they don't need to be in separate -profile packages. (In fact we can probably just eliminate the _p.a archives assuming that profiling will be done using hwpmc etc., but that is a change for later.) Discussed with: bapt, manu Sponsored by: The FreeBSD Foundation --- share/mk/bsd.lib.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/mk/bsd.lib.mk b/share/mk/bsd.lib.mk index 62f762667f0c..7c3b8eef5a7f 100644 --- a/share/mk/bsd.lib.mk +++ b/share/mk/bsd.lib.mk @@ -437,7 +437,7 @@ _libinstall: ${_INSTALLFLAGS} lib${LIB_PRIVATE}${LIB}.a ${DESTDIR}${_LIBDIR}/ .endif .if ${MK_PROFILE} != "no" && defined(LIB) && !empty(LIB) - ${INSTALL} ${TAG_ARGS:D${TAG_ARGS},profile} -C -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ + ${INSTALL} ${TAG_ARGS:D${TAG_ARGS},development} -C -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ ${_INSTALLFLAGS} lib${LIB_PRIVATE}${LIB}_p.a ${DESTDIR}${_LIBDIR}/ .endif .if defined(SHLIB_NAME)