diff options
author | Ed Maste <emaste@FreeBSD.org> | 2017-08-16 17:22:42 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2017-08-16 17:22:42 +0000 |
commit | 63cd05d97a6d280e280538229040537d5ac75788 (patch) | |
tree | 14ace34ab86e4f6693ec0379efc2202e7c5d5dfd /tools | |
parent | ce44a736674148acb5a1b66bd0ad79ebd7cafe60 (diff) | |
download | src-63cd05d97a6d280e280538229040537d5ac75788.tar.gz src-63cd05d97a6d280e280538229040537d5ac75788.zip |
Notes
Diffstat (limited to 'tools')
-rw-r--r-- | tools/build/mk/OptionalObsoleteFiles.inc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/build/mk/OptionalObsoleteFiles.inc b/tools/build/mk/OptionalObsoleteFiles.inc index 18a30e725a9a..e497b8d55352 100644 --- a/tools/build/mk/OptionalObsoleteFiles.inc +++ b/tools/build/mk/OptionalObsoleteFiles.inc @@ -1557,6 +1557,22 @@ OLD_FILES+=usr/bin/g++ OLD_FILES+=usr/libexec/cc1plus .endif +.if ${MK_DEBUG_FILES} == no +.if exists(${DESTDIR}/usr/lib/debug) +DEBUG_DIRS!=find ${DESTDIR}/usr/lib/debug -mindepth 1 \ + -type d \! -path "${DESTDIR}/usr/lib/debug/boot/*" \ + | sed -e 's,^${DESTDIR}/,,'; echo +DEBUG_FILES!=find ${DESTDIR}/usr/lib/debug \ + \! -type d \! -path "${DESTDIR}/usr/lib/debug/boot/*" \! -name "lib*.so*" \ + | sed -e 's,^${DESTDIR}/,,'; echo +DEBUG_LIBS!=find ${DESTDIR}/usr/lib/debug \! -type d -name "lib*.so*" \ + | sed -e 's,^${DESTDIR}/,,'; echo +OLD_DIRS+=${DEBUG_DIRS} +OLD_FILES+=${DEBUG_FILES} +OLD_LIBS+=${DEBUG_LIBS} +.endif +.endif + .if ${MK_DIALOG} == no OLD_FILES+=usr/bin/dialog OLD_FILES+=usr/bin/dpv |