Unbreak the arm64/sparc64 tinderbox by only compiling lib/libproc and

lib/librtld_db on architectures where they're supported

Reported by: bz, Jenkins
Pointyhat to: bapt
This commit is contained in:
Enji Cooper 2015-05-20 13:05:33 +00:00
parent ebfd9f66a7
commit 3f48075933
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=283152

View File

@ -1694,8 +1694,6 @@ _prebuild_libs= ${_kerberos5_lib_libasn1} \
lib/libopie lib/libpam ${_lib_libthr} \
${_lib_libradius} lib/libsbuf lib/libtacplus \
lib/libgeom \
lib/libproc \
lib/librtld_db \
${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \
${_cddl_lib_libuutil} \
${_cddl_lib_libavl} \
@ -1767,6 +1765,13 @@ _cddl_lib= cddl/lib
cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L
cddl/lib/libzfs__L: lib/libgeom__L
cddl/lib/libctf__L: lib/libz__L
# cddl/lib/libdtrace requires lib/libproc and lib/librtld_db; it's only built
# on select architectures though (see cddl/lib/Makefile)
.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386" || \
${MACHINE_CPUARCH} == "mips" || ${MACHINE_CPUARCH} == "powerpc" || \
${MACHINE_CPUARCH} == "arm"
_prebuild_libs+= lib/libproc lib/librtld_db
.endif
.endif
.if ${MK_CRYPT} != "no"