diff options
author | Rui Paulo <rpaulo@FreeBSD.org> | 2014-09-23 18:22:40 +0000 |
---|---|---|
committer | Rui Paulo <rpaulo@FreeBSD.org> | 2014-09-23 18:22:40 +0000 |
commit | 881417d74fbb783106fdb5a39b45739f73dfee59 (patch) | |
tree | 6107412842c9f3e62d3df1816bc90de32645c0f5 /cddl/usr.sbin/Makefile | |
parent | eebb09cfe763d53724789f9dcefa2f9c589e3244 (diff) | |
download | src-881417d74fbb783106fdb5a39b45739f73dfee59.tar.gz src-881417d74fbb783106fdb5a39b45739f73dfee59.zip |
Build plockstat if WITH_PLOCKSTAT is defined.
Notes
Notes:
svn path=/head/; revision=272034
Diffstat (limited to 'cddl/usr.sbin/Makefile')
-rw-r--r-- | cddl/usr.sbin/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cddl/usr.sbin/Makefile b/cddl/usr.sbin/Makefile index 537b8e52792f..0d34afd025bb 100644 --- a/cddl/usr.sbin/Makefile +++ b/cddl/usr.sbin/Makefile @@ -5,6 +5,7 @@ SUBDIR= ${_dtrace} \ ${_dtruss} \ ${_lockstat} \ + ${_plockstat} \ ${_tests} \ ${_zdb} \ ${_zhack} @@ -24,6 +25,9 @@ _zhack= zhack _dtrace= dtrace _dtruss= dtruss _lockstat= lockstat +.if defined(WITH_PLOCKSTAT) +_plockstat= plockstat +.endif .endif .if ${MACHINE_CPUARCH} == "mips" |