mirror of
https://github.com/opnsense/src.git
synced 2026-06-14 19:20:18 -04:00
Don't attempt to build ports with missing dependencies.
Approved by: re (gjb)
This commit is contained in:
parent
1f90f28221
commit
dcc756789c
1 changed files with 7 additions and 0 deletions
|
|
@ -254,6 +254,13 @@ ports_build() (
|
|||
fi
|
||||
fi
|
||||
|
||||
miss=`(cd $p ; make missing ${PORTS_OPTS}) || true`
|
||||
|
||||
if [ "x${miss}" != "x" ] ; then
|
||||
log_it "MISSING for $p:" $miss
|
||||
continue
|
||||
fi
|
||||
|
||||
log_it "build $pn ($p)"
|
||||
(
|
||||
set +e
|
||||
|
|
|
|||
Loading…
Reference in a new issue