mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
build: Use rm -fv for BATCH_DELETE_OLD_FILES
It's possible to have files with odd permissions in the tmproot (or
sysroot), causing rm to prompt for each one during e.g. buildworld.
Add -f to forcibly delete these.
Reviewed by: brooks
MFC after: 1 month
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D37111
(cherry picked from commit 470fb726f3)
This commit is contained in:
parent
b53f847c9e
commit
689a5b1944
1 changed files with 1 additions and 1 deletions
|
|
@ -3195,7 +3195,7 @@ specific library."
|
|||
.if !defined(BATCH_DELETE_OLD_FILES)
|
||||
RM_I=-i
|
||||
.else
|
||||
RM_I=-v
|
||||
RM_I=-fv
|
||||
.endif
|
||||
|
||||
list-old-files: .PHONY
|
||||
|
|
|
|||
Loading…
Reference in a new issue