Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 Jan 2020 17:27:08 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r356797 - head/share/mk
Message-ID:  <202001161727.00GHR81m093567@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Thu Jan 16 17:27:08 2020
New Revision: 356797
URL: https://svnweb.freebsd.org/changeset/base/356797

Log:
  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

Modified:
  head/share/mk/bsd.lib.mk

Modified: head/share/mk/bsd.lib.mk
==============================================================================
--- head/share/mk/bsd.lib.mk	Thu Jan 16 17:15:06 2020	(r356796)
+++ head/share/mk/bsd.lib.mk	Thu Jan 16 17:27:08 2020	(r356797)
@@ -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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001161727.00GHR81m093567>