mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Don't make wildcards .PHONY
Add pseudo machines host and common to machine list for destroy
This commit is contained in:
parent
241026341f
commit
005cfa50ee
1 changed files with 3 additions and 2 deletions
|
|
@ -129,7 +129,7 @@ cleanobj: clean cleandepend
|
|||
|
||||
# Tell bmake not to look for generated files via .PATH
|
||||
.if !empty(CLEANFILES)
|
||||
.NOPATH: ${CLEANFILES}
|
||||
.NOPATH: ${CLEANFILES:N*\**}
|
||||
.endif
|
||||
|
||||
.if !target(clean)
|
||||
|
|
@ -180,7 +180,8 @@ destroy-stage: .NOMETA
|
|||
.endif
|
||||
|
||||
# allow parallel destruction
|
||||
.for m in ${ALL_MACHINE_LIST}
|
||||
_destroy_machine_list = common host ${ALL_MACHINE_LIST}
|
||||
.for m in ${_destroy_machine_list:O:u}
|
||||
destroy-all: destroy.$m
|
||||
.if !target(destroy.$m)
|
||||
destroy.$m: .NOMETA
|
||||
|
|
|
|||
Loading…
Reference in a new issue