git: f8c4000ca683 - stable/13 - libprocstat: extend zfs_defs hack for .pieo

Ed Maste emaste at FreeBSD.org
Mon Sep 20 01:29:36 UTC 2021


The branch stable/13 has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=f8c4000ca683e3f4762be683e041519f1398777d

commit f8c4000ca683e3f4762be683e041519f1398777d
Author:     Ed Maste <emaste at FreeBSD.org>
AuthorDate: 2021-09-12 23:04:31 +0000
Commit:     Ed Maste <emaste at FreeBSD.org>
CommitDate: 2021-09-20 01:28:26 +0000

    libprocstat: extend zfs_defs hack for .pieo
    
    By default _pie.a archives are built only for INTERNALLIBs, so there is
    usually no need for zfs_defs.pieo to exist.  However, some experimental
    work builds _pie.a archives for everything.  Extend the existing set of
    zfs_defs hacks to build zfs_defs.pieo as well.
    
    Reviewed by:    arichardson
    MFC after:      1 week
    Sponsored by:   The FreeBSD Foundation
    Differential Revision:  https://reviews.freebsd.org/D31924
    
    (cherry picked from commit b9df18d6e8917a9bfb62babb7cf9efeca23aa2fc)
---
 lib/libprocstat/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/libprocstat/Makefile b/lib/libprocstat/Makefile
index 2e60a7b0dc4d..e8ca072066d5 100644
--- a/lib/libprocstat/Makefile
+++ b/lib/libprocstat/Makefile
@@ -64,6 +64,8 @@ zfs/zfs_defs.o: .PHONY
 	@cd ${.CURDIR}/zfs && ${MAKE} zfs_defs.o
 zfs/zfs_defs.pico: .PHONY
 	@cd ${.CURDIR}/zfs && ${MAKE} zfs_defs.pico
+zfs/zfs_defs.pieo: .PHONY
+	@cd ${.CURDIR}/zfs && ${MAKE} zfs_defs.pieo
 zfs/zfs_defs.po: .PHONY
 	@cd ${.CURDIR}/zfs && ${MAKE} zfs_defs.po
 .endif


More information about the dev-commits-src-branches mailing list