mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Bruce says that ${.CURDIR}/csu/${MACHINE} will prevent finding a
stale obj directory and we wouldn't want to do that! I trust he knows what he's talking about. 8-) Also avoid building libm at all until the NetBSD asm code is imported. I wrongly commented this out last time. Oops.
This commit is contained in:
parent
a424913c23
commit
6a7a98c954
1 changed files with 6 additions and 2 deletions
|
|
@ -4,10 +4,11 @@
|
|||
SUBDIR=csu/tahoe.pcc
|
||||
.elif ${MACHINE} == "vax"
|
||||
SUBDIR=csu/vax.pcc
|
||||
.elif exists(csu/${MACHINE})
|
||||
.elif exists(${.CURDIR}/csu/${MACHINE})
|
||||
SUBDIR=csu/${MACHINE}
|
||||
.endif
|
||||
|
||||
# Don't want to build libc on alpha just yet
|
||||
.if ${MACHINE} != "alpha"
|
||||
SUBDIR+=libc
|
||||
.endif
|
||||
|
|
@ -42,11 +43,14 @@ SUBDIR+= libcrypt
|
|||
SUBDIR+= libtelnet
|
||||
.endif
|
||||
|
||||
.if defined(WANT_CSRG_LIBM) && ${MACHINE} != "alpha"
|
||||
# Don't want to build libm on alpha just yet
|
||||
.if ${MACHINE} != "alpha"
|
||||
.if defined(WANT_CSRG_LIBM)
|
||||
SUBDIR+= libm
|
||||
.else
|
||||
SUBDIR+= msun
|
||||
.endif
|
||||
.endif
|
||||
|
||||
SUBDIR+= compat
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue