mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Attempt to fix build logic for gensnmptree.
There are two problems with the existing logic. It builds gensnmptree on <700018, even if WITHOUT_BSNMP is set, but more importantly, we must not forget to build gensnmptree on systems that have originally been built without. This causes a buildworld on those systems to fail. MFC after: 1 week
This commit is contained in:
parent
0321b694c7
commit
653eeb7f5e
1 changed files with 2 additions and 1 deletions
|
|
@ -1018,7 +1018,8 @@ _yacc= usr.bin/yacc
|
|||
_awk= usr.bin/awk
|
||||
.endif
|
||||
|
||||
.if ${BOOTSTRAPPING} < 700018
|
||||
.if ${MK_BSNMP} != "no" && \
|
||||
(${BOOTSTRAPPING} < 700018 || !exists(/usr/sbin/gensnmptree))
|
||||
_gensnmptree= usr.sbin/bsnmpd/gensnmptree
|
||||
.endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue