diff options
Diffstat (limited to 'tools/build/mk/OptionalObsoleteFiles.inc')
| -rw-r--r-- | tools/build/mk/OptionalObsoleteFiles.inc | 35 |
1 files changed, 32 insertions, 3 deletions
diff --git a/tools/build/mk/OptionalObsoleteFiles.inc b/tools/build/mk/OptionalObsoleteFiles.inc index bbecadd2b71f..7f5534704722 100644 --- a/tools/build/mk/OptionalObsoleteFiles.inc +++ b/tools/build/mk/OptionalObsoleteFiles.inc @@ -173,6 +173,10 @@ OLD_DIRS+=etc/autofs .endif .if ${MK_BHYVE} == no +OLD_FILES+=usr/lib/libvmmapi.a +OLD_FILES+=usr/lib/libvmmapi.so +OLD_LIBS+=usr/lib/libvmmapi.so.5 +OLD_FILES+=usr/include/vmmapi.h OLD_FILES+=usr/sbin/bhyve OLD_FILES+=usr/sbin/bhyvectl OLD_FILES+=usr/sbin/bhyveload @@ -3964,9 +3968,34 @@ OLD_FILES+=usr/share/man/man5/keymap.5.gz OLD_FILES+=usr/share/man/man8/moused.8.gz .endif -#.if ${MK_LIB32} == no -# to be filled in -#.endif +.if ${MK_LIB32} == no +OLD_FILES+=etc/mtree/BSD.lib32.dist +OLD_FILES+=libexec/ld-elf32.so.1 +. if exists(${DESTDIR}/usr/lib32) +LIB32_DIRS!=find ${DESTDIR}/usr/lib32 -type d \ + | sed -e 's,^${DESTDIR}/,,'; echo +LIB32_FILES!=find ${DESTDIR}/usr/lib32 \! -type d \ + \! -name "lib*.so*" | sed -e 's,^${DESTDIR}/,,'; echo +LIB32_LIBS!=find ${DESTDIR}/usr/lib32 \! -type d \ + -name "lib*.so*" | sed -e 's,^${DESTDIR}/,,'; echo +OLD_DIRS+=${LIB32_DIRS} +OLD_FILES+=${LIB32_FILES} +OLD_LIBS+=${LIB32_LIBS} +. endif +. if ${MK_DEBUG_FILES} == no +. if exists(${DESTDIR}/usr/lib/debug/usr/lib32) +DEBUG_LIB32_DIRS!=find ${DESTDIR}/usr/lib/debug/usr/lib32 -type d \ + | sed -e 's,^${DESTDIR}/,,'; echo +DEBUG_LIB32_FILES!=find ${DESTDIR}/usr/lib/debug/usr/lib32 \! -type d \ + \! -name "lib*.so*" | sed -e 's,^${DESTDIR}/,,'; echo +DEBUG_LIB32_LIBS!=find ${DESTDIR}/usr/lib/debug/usr/lib32 \! -type d \ + -name "lib*.so*" | sed -e 's,^${DESTDIR}/,,'; echo +OLD_DIRS+=${DEBUG_LIB32_DIRS} +OLD_FILES+=${DEBUG_LIB32_FILES} +OLD_LIBS+=${DEBUG_LIB32_LIBS} +. endif +. endif +.endif .if ${MK_LIBCPLUSPLUS} == no OLD_LIBS+=lib/libcxxrt.so.1 |
