NO_CLEAN: No need to run delete-old if the directories don't exist.

X-MFC-With:	r321443
MFC after:	1 month
Sponsored by:	Dell EMC Isilon
This commit is contained in:
Bryan Drewery 2017-08-01 16:41:17 +00:00
parent 26b5613dfc
commit 5aa73fa259
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=321882

View File

@ -760,10 +760,12 @@ _worldtmp: .PHONY
rm -rf ${LIBCOMPATTMP}
.endif
.else
.if exists(${WORLDTMP})
@echo ">>> Deleting stale files in build tree..."
${_+_}cd ${.CURDIR}; ${WMAKE} -DBATCH_DELETE_OLD_FILES \
delete-old delete-old-libs >/dev/null
.if defined(LIBCOMPAT)
.endif
.if defined(LIBCOMPAT) && exists(${LIBCOMPATTMP})
${_+_}cd ${.CURDIR}; ${WMAKE} -DBATCH_DELETE_OLD_FILES \
DESTDIR=${LIBCOMPATTMP} \
delete-old delete-old-libs >/dev/null