mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
In addition to creating subdirectories under .OBJDIR for SRCS with
relative paths, also create them for DPSRCS. This is needed for builds that generate files during the depend stage, which cannot be compiled by themselves, since those have to be put in DPSRCS.
This commit is contained in:
parent
4d611b2b2d
commit
1075729090
1 changed files with 1 additions and 1 deletions
|
|
@ -102,7 +102,7 @@ obj: .PHONY
|
|||
fi; \
|
||||
${ECHO} "${CANONICALOBJDIR} created for ${.CURDIR}"; \
|
||||
fi
|
||||
.for dir in ${SRCS:H:O:u}
|
||||
.for dir in ${SRCS:H:O:u} ${DPSRCS:H:O:u}
|
||||
@if ! test -d ${CANONICALOBJDIR}/${dir}/; then \
|
||||
mkdir -p ${CANONICALOBJDIR}/${dir}; \
|
||||
if ! test -d ${CANONICALOBJDIR}/${dir}/; then \
|
||||
|
|
|
|||
Loading…
Reference in a new issue