mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
PC-98 has MACHINE_ARCH=i386 and MACHINE=pc98. Make it a special case.
This should fix the breakage reported by nyan.
This commit is contained in:
parent
890970b27b
commit
0ff463dd2d
1 changed files with 5 additions and 0 deletions
|
|
@ -4,7 +4,12 @@
|
|||
SUBDIR+= ficl
|
||||
|
||||
# Pick the machine-dependant subdir based on the target architecture.
|
||||
# XXX pc98 is basicly a special i386 with MACHINE_ARCH=i386 and MACHINE=pc98.
|
||||
.if ${MACHINE_ARCH} == "i386" && ${MACHINE} == "pc98"
|
||||
SUBDIR+= ${MACHINE}
|
||||
.else
|
||||
SUBDIR+= ${MACHINE_ARCH}
|
||||
.endif
|
||||
|
||||
# Build ARC / AlphaBIOS executable on the Alpha
|
||||
.if ${MACHINE_ARCH} == "alpha"
|
||||
|
|
|
|||
Loading…
Reference in a new issue