svn commit: r228073 - stable/9/cddl/lib/drti

Robert Watson rwatson at FreeBSD.org
Mon Nov 28 15:09:32 UTC 2011


Author: rwatson
Date: Mon Nov 28 15:09:31 2011
New Revision: 228073
URL: http://svn.freebsd.org/changeset/base/228073

Log:
  Merge r228057 from head to stable/9:
  
    Change the Makefile in cddl/lib/drti to use bsd.lib.mk instead of
    bsd.prog.mk -- we need to compile PIC, which requires a library build.
    With this change, USDT (userspace DTrace probes) work from within
    shared libraries.
  
    PR:             kern/159046
    Submitted by:   Alex Samorukov <samm at os2.kiev.ua>
    Comments by:    Scott Lystig Fritchie <slfritchie at snookles.com>
  
  Approved by:	re (xxx)

Modified:
  stable/9/cddl/lib/drti/Makefile
Directory Properties:
  stable/9/cddl/lib/drti/   (props changed)

Modified: stable/9/cddl/lib/drti/Makefile
==============================================================================
--- stable/9/cddl/lib/drti/Makefile	Mon Nov 28 14:58:51 2011	(r228072)
+++ stable/9/cddl/lib/drti/Makefile	Mon Nov 28 15:09:31 2011	(r228073)
@@ -18,4 +18,4 @@ CFLAGS+=	-I${.CURDIR}/../../../sys/cddl/
 		-I${OPENSOLARIS_SYS_DISTDIR}/uts/common \
 		-DPIC ${PICFLAG}
 
-.include <bsd.prog.mk>
+.include <bsd.lib.mk>


More information about the svn-src-all mailing list