mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Don't build gperf.
This commit is contained in:
parent
00900fed40
commit
ef446fb2c6
2 changed files with 14 additions and 6 deletions
|
|
@ -317,15 +317,23 @@ everything:
|
|||
|
||||
|
||||
WMAKE_TGTS=
|
||||
.if !defined(SUBDIR_OVERRIDE)
|
||||
.if !defined(SUBDIR_OVERRIDE) && !defined(X_QUICK)
|
||||
WMAKE_TGTS+= _worldtmp _bootstrap-tools
|
||||
.endif
|
||||
.if !defined(X_QUICK)
|
||||
WMAKE_TGTS+= _cleanobj _obj _build-tools
|
||||
.if !defined(SUBDIR_OVERRIDE)
|
||||
.endif
|
||||
.if !defined(SUBDIR_OVERRIDE) && !defined(X_QUICK)
|
||||
WMAKE_TGTS+= _cross-tools
|
||||
.endif
|
||||
WMAKE_TGTS+= _includes _libraries _depend everything
|
||||
|
||||
.for __target in ${WMAKE_TGTS}
|
||||
.if defined(NO${__target})
|
||||
WMAKE_TGTS:= ${WMAKE_TGTS:N${__target}}
|
||||
.endif
|
||||
.endfor
|
||||
|
||||
buildworld: ${WMAKE_TGTS}
|
||||
.ORDER: ${WMAKE_TGTS}
|
||||
|
||||
|
|
@ -572,8 +580,8 @@ installmost:
|
|||
.if exists(${.CURDIR}/games) && !defined(NOGAMES)
|
||||
_strfile= games/fortune/strfile
|
||||
.endif
|
||||
.if ${CXX} != "c++"
|
||||
_cxx_consumers= gnu/usr.bin/gperf gnu/usr.bin/groff
|
||||
.if ${CXX:T} != "c++"
|
||||
_cxx_consumers= gnu/usr.bin/groff
|
||||
.endif
|
||||
|
||||
bootstrap-tools:
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@
|
|||
SUBDIR= awk bc binutils cc cpio dc dialog diff diff3 \
|
||||
grep gzip man patch ptx rcs sdiff send-pr sort tar texinfo
|
||||
|
||||
.if ${CXX} != "c++"
|
||||
SUBDIR+=gperf groff
|
||||
.if ${CXX:T} != "c++"
|
||||
SUBDIR+=groff
|
||||
.endif
|
||||
|
||||
.if !defined(NO_CVS)
|
||||
|
|
|
|||
Loading…
Reference in a new issue