Date: Mon, 13 Sep 2021 13:05:10 GMT From: Ed Maste <emaste@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: b9df18d6e891 - main - libprocstat: extend zfs_defs hack for .pieo Message-ID: <202109131305.18DD5AVx012084@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=b9df18d6e8917a9bfb62babb7cf9efeca23aa2fc commit b9df18d6e8917a9bfb62babb7cf9efeca23aa2fc Author: Ed Maste <emaste@FreeBSD.org> AuthorDate: 2021-09-12 23:04:31 +0000 Commit: Ed Maste <emaste@FreeBSD.org> CommitDate: 2021-09-13 13:03:55 +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 --- 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202109131305.18DD5AVx012084>